# GoCreative UUID Lookup

> GoCreative UUID 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-14).

Looks up information or resolves metadata associated with a given UUID via a pay-per-call API endpoint.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/lookup/uuid
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-uuid-lookup-4e02735a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NQCrWT8wgN0xYn2rkv7eJ

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-uuid-lookup-4e02735a
```

Example prompt: Look up the UUID '550e8400-e29b-41d4-a716-446655440000' and tell me what entity or record it resolves to using GoCreative's pay-per-call lookup.

## When to prefer this

Use this endpoint when you have a UUID identifier and need to resolve or look up what entity, record, or metadata it corresponds to within GoCreative's B2B data ecosystem. Prefer this over general search endpoints when you already have the UUID and just need to hydrate or resolve it. Useful in workflows where UUIDs are passed between systems and enrichment is needed.

## Known failure modes

- UUID not found or unrecognized — returns empty or error response
- Invalid UUID format — malformed input may cause a 400 error
- Payment failure via x402 — if USDC payment on Base fails, the call is rejected
- Rate limiting or network timeout if the service is under load
- Version parameter mismatch may return unexpected schema

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

Returns a JSON object with metadata or entity information associated with the provided UUID. The response schema is open (additionalProperties: true), meaning the fields returned may vary depending on the UUID and what it maps to in GoCreative's data systems.

## Example request

```json
{
 "format": "json"
}
```

## 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-uuid-lookup-4e02735a/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)
