# GoCreative SOS Business Entity Verification

> GoCreative SOS Business Entity Verification is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Looks up and verifies a business entity through a U.S. Secretary of State (SOS) registry by business name or identifier

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/verify/sos-business/%7Barg%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Success rate: 0% of calls made through Zero
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-sos-business-entity-verification-ad5beb51
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e2oSfFwcRTCAvG1dAbkZn

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability gocreative-sos-business-entity-verification-ad5beb51
```

Example prompt: Can you verify whether 'Acme Technologies Inc' is a registered and active business entity through the Secretary of State — I need to confirm it's legitimate before we onboard them as a vendor.

## When to prefer this

Use this endpoint when you need to perform Know Your Business (KYB) verification by checking a company's Secretary of State registration status as part of onboarding, compliance, or due diligence workflows. Prefer this over general web search when you need authoritative, structured official registry data rather than unstructured web results.

## Known failure modes

- Business entity not found in SOS registry — returns 404 or empty result
- Ambiguous business name matching multiple entities — may return multiple results or require more specific input
- SOS registry temporarily unavailable — upstream data source error
- Invalid or malformed input argument — returns 400 bad request
- Payment failure via x402 — 402 response if USDC payment not completed

## How this service works

Keyless, pay-per-call compliance &amp; regulated-data API for AI agents — OFAC wallet + sanctions/PEP + KYB screening, SEC filings, FRED economics, FDA recalls, federal awards, plus continuous monitoring. USDC on Base/Solana via x402, native MCP. No API key, no signup.

## Output

Returns Secretary of State business registry data for the queried entity, including registration status (active/inactive/dissolved), entity type, state of formation, filing date, and other official registration details relevant to KYB compliance.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-sos-business-entity-verification-ad5beb51/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
