# GoCreative SIC Code Lookup API

> GoCreative SIC Code Lookup API is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Looks up a Standard Industrial Classification (SIC) code and returns its associated industry description and classification details

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/lookup/sic/%7Barg%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-sic-code-lookup-api-6dfbe2bb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yWQKLT75Tr35rwLqihaJc

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-sic-code-lookup-api-6dfbe2bb
```

Example prompt: What industry does SIC code 5411 refer to? I need the official classification name and description for a compliance report I'm putting together.

## When to prefer this

Choose this endpoint when you need to decode or look up a numeric SIC code into its official industry classification name — particularly useful during KYB/KYC workflows, SEC filing research, or when enriching company data with industry sector information. It is pay-per-call with no API key required, making it ideal for low-volume or ad-hoc agent tasks.

## Known failure modes

- Invalid or non-existent SIC code returns an error or empty result
- Malformed path parameter causes a 400 or 402 payment-related error
- Payment failure via x402 results in 402 response before data is returned
- Rate limiting or network issues may cause timeouts

## 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 the official industry name and description associated with the provided SIC code, including sector and classification details drawn from the Standard Industrial Classification system used in SEC filings and regulatory contexts.

## 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-sic-code-lookup-api-6dfbe2bb/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)
