# GoCreative Country Lookup

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

Looks up detailed data for a country given its name or code, using official government and reference sources

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/lookup/country/%7Barg%7D
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-09
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-country-lookup-6e989524
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y2a7zXjHJJe9f-68UdqNZ

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-country-lookup-6e989524
```

Example prompt: Can you look up the country data for France — things like capital, currency, region, and official name?

## When to prefer this

Use this endpoint when you need structured reference data about a specific country — such as its capital, currency, region, or official name — and want it sourced from official data without needing an API key or signup. Ideal for agents enriching records with country metadata, validating country fields, or answering factual geopolitical questions about a single country.

## Known failure modes

- Invalid or unrecognized country name/code returns an error or empty result
- Ambiguous country name may return unexpected match
- Network or payment failure (x402 USDC payment not processed) causes 402 or 5xx error
- Rate limiting or upstream data source unavailability causes timeout

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

Structured data about the specified country, likely including official name, capital city, region, subregion, population, currency codes, ISO codes, and other reference metadata drawn from official sources.

## 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-country-lookup-6e989524/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)
