# GoCreative DeFi Data Endpoint

> GoCreative DeFi Data Endpoint is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-09).

Fetches decentralized finance (DeFi) data for a given argument/identifier via pay-per-call API built on official sources

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/defi/%7Barg%7D
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-09
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-defi-data-endpoint-02516d58
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B-WG_UY_hAHuir9bRMLZ4

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-defi-data-endpoint-02516d58
```

Example prompt: Pull the DeFi data for Uniswap from GoCreative's pay-per-call API — I need the latest protocol metrics, TVL, or pool stats for that protocol.

## When to prefer this

Choose this endpoint when you need real-world DeFi data on a pay-per-call basis with no API key or signup required, and you can pay $0.003 USDC per call via the x402 protocol on Base. Ideal for AI agents that need on-demand DeFi metrics without committing to a subscription, especially when integrated with MCP-compatible agent frameworks.

## Known failure modes

- Missing or invalid 'input' query parameter returns a 400 or error response
- Unknown DeFi identifier/argument returns empty or not-found response
- Payment failure via x402 returns 402 Payment Required with no data
- Network or upstream data source unavailability causes 5xx error
- Malformed argument string causes parsing error

## 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 DeFi-related data for the requested identifier, which may include protocol metrics, TVL (total value locked), token statistics, liquidity pool data, yield rates, or other on-chain decentralized finance information sourced from official data providers. Payment of $0.003 USDC on Base is required per call via x402 protocol.

## 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-defi-data-endpoint-02516d58/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)
