# GoCreative Social Data Lookup

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

Retrieves social media profile or metric data for a given social handle or identifier via pay-per-call API

## Facts

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

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-social-data-lookup-9074844f
```

Example prompt: Can you pull the public social profile data for the handle 'elonmusk' using GoCreative's social lookup — I need follower counts and account info without having to sign up for anything?

## When to prefer this

Use this endpoint when you need quick, no-signup social profile lookups paid per-call in USDC on Base via x402, especially in agentic workflows where you want to avoid managing API keys or subscription plans. Prefer this over platform-native APIs when you need a unified, pay-as-you-go social data layer.

## Known failure modes

- Handle not found — returns 404 or empty result
- Invalid or missing 'input' query parameter — returns 400 bad request
- Payment not received via x402 — returns 402 Payment Required
- Rate limit or quota exceeded — returns 429
- Social platform data temporarily unavailable — returns 503 or error object

## 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 public social media profile and metrics data for the given handle or identifier, such as follower counts, account bio, engagement stats, and other publicly available social data fields.

## 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-social-data-lookup-9074844f/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)
