# GoCreative Stablecoin Data API

> GoCreative Stablecoin Data 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-08).

Retrieves real-world data and information about a specific stablecoin by its identifier, sourced from official crypto data sources

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/crypto/stablecoins/%7Barg%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-08
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-stablecoin-data-api-4e73ce1f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Dgc33Y2FNexgEGH0gkh-S

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-stablecoin-data-api-4e73ce1f
```

Example prompt: Can you pull up the stablecoin data for USDC from GoCreative — I want to see the supply, peg details, and issuer information?

## When to prefer this

Use this endpoint when you need structured, pay-per-call stablecoin data without API key setup or subscription overhead. Ideal for AI agents that need on-demand stablecoin information with USDC micropayments via x402. Choose this over free APIs when you need reliable, officially-sourced data on a per-query basis for a specific stablecoin.

## Known failure modes

- Unknown stablecoin identifier returns 404 or empty result
- Invalid or malformed stablecoin symbol returns 400 error
- Payment failure via x402 if USDC balance is insufficient
- Upstream data source unavailable returns 503
- Rate limiting or temporary service outage

## How this service works

483,000+ pay-per-call data APIs and free tools built on official sources — finance, company &amp; government data, FRED, Census, crypto, calculators. USDC on Base via x402, native MCP. No API key, no signup.

## Output

Returns structured data about the specified stablecoin including market metrics, circulating supply, peg status, backing/collateral details, issuer information, and other relevant on-chain or market data sourced from official crypto data providers.

## 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-stablecoin-data-api-4e73ce1f/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)
