# GoCreative Document Extraction API

> GoCreative Document Extraction API 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-09).

Extracts and parses content from a document URL or identifier, returning structured data from the document

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/extract/document/%7Barg%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-09
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-document-extraction-api-9e7cfd11
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rHeEISfzO_G4zlbUiIgGa

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-document-extraction-api-9e7cfd11
```

Example prompt: Extract the contents of this document for me — here's the URL: https://example.com/annual-report-2024.pdf — I want the full text and any structured data it contains.

## When to prefer this

Use this endpoint when you need to extract content from a specific document by URL or identifier without signing up for an API key, paying only per call in USDC. Ideal for one-off document extraction tasks within agent workflows that need finance, government, or company documents parsed on demand.

## Known failure modes

- Invalid or unreachable document URL returns an error response
- Unsupported document format may result in empty or partial extraction
- Payment failure via x402 returns 402 Payment Required
- Malformed input query parameter returns 400 Bad Request
- Large documents may time out or return partial content

## 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 extracted and parsed content from the specified document, including text and structured data pulled from official or user-supplied document sources. Response is priced at $0.05 USDC per call via x402 on Base.

## 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-document-extraction-api-9e7cfd11/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)
