# GoCreative Prism Contact Lookup

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

Looks up contact information for a given entity using pay-per-call data built on official sources

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/prism/contact/%7Barg%7D
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-09
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-prism-contact-lookup-12a6265c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tmRGoUQz3uZTk7Ny6dQ54

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-prism-contact-lookup-12a6265c
```

Example prompt: Can you look up the contact information for Acme Corporation using GoCreative's prism contact endpoint?

## When to prefer this

Use this endpoint when you need to look up contact information for a specific business, person, or entity by name or identifier, and want pay-per-call pricing with no API key required. Prefer this over subscription-based contact APIs when usage is sporadic or budget is usage-based.

## Known failure modes

- Entity not found — returns empty result or 404 if the queried contact does not exist in the database
- Invalid or missing input query parameter — returns 400 bad request
- Payment not processed — returns 402 if USDC payment via x402 fails
- Rate limiting or service unavailability — returns 503
- Ambiguous identifier resolves to no unique match

## 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 contact details for the queried entity, sourced from official data providers. May include addresses, phone numbers, email contacts, or other identifiers depending on what is available for the given input.

## 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-prism-contact-lookup-12a6265c/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)
