# GoCreative Census Business Patterns by State

> GoCreative Census Business Patterns by State is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-08).

Returns US Census County Business Patterns data (establishments, employees, annual payroll) broken down by industry sector for a given US state.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/census/business-state/%7Barg%7D
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-08
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-census-business-patterns-by-state-ac1fb2e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WsDqn5XRTipI26H4EAJpr

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-census-business-patterns-by-state-ac1fb2e3
```

Example prompt: Pull the US Census County Business Patterns data for California so I can see which industries have the most employees, establishments, and highest annual payroll.

## When to prefer this

Use this endpoint when you need official US government business statistics (employee counts, establishment counts, payroll) broken down by industry sector for a specific US state, sourced directly from the US Census County Business Patterns dataset. Prefer this over scraped or third-party business data when accuracy and official sourcing matter.

## Known failure modes

- Invalid or unrecognized state code returns an error
- State code passed as full name instead of abbreviation may fail
- Truncated or incomplete response if upstream Census API is unavailable
- Payment failure (402) if USDC balance is insufficient on Base

## 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

A JSON object containing the year, source attribution ('US Census County Business Patterns'), and an array of industry sectors each with NAICS code, industry name, number of employees, number of establishments, and annual payroll in USD — covering all major sectors for the requested state.

## Example request

```json
{
 "arg": "CA"
}
```

## 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-census-business-patterns-by-state-ac1fb2e3/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)
