# CodePulse API – Domain Social Profile Lookup

> CodePulse API – Domain Social Profile Lookup is a paid API for AI agents from codepulse-api.hahavoid0.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Checks whether a given username handle is registered across social platforms and returns profile URLs and registration status

## Facts

- Endpoint: POST https://codepulse-api.hahavoid0.workers.dev/domain/social
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/codepulse-api-domain-social-profile-lookup-894c3ffb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L0oMrTT82hxVqYh_CrMp2

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 codepulse-api-domain-social-profile-lookup-894c3ffb -d '<json body>'
```

Example prompt: Can you check whether the username 'johndoe' is registered on social platforms and give me the profile URLs?

## When to prefer this

Choose this endpoint when you need to quickly check whether a specific username handle is registered on social platforms and retrieve profile URLs without building your own scraping logic. Best suited for single-handle lookups with pay-per-call pricing ($0.02 USDC), requiring no API key, making it ideal for agents that need lightweight, on-demand social presence verification.

## Known failure modes

- Handle not found on any supported platform — returns registered: false for all platforms
- Unsupported platform or handle format — supported flag may be false
- Rate limiting or payment failure via x402 — request rejected before processing
- Handle contains invalid characters — input validation error
- Stale or cached data — data_as_of timestamp may lag real-time registration changes

## How this service works

Checks availability of a handle across major social platforms (GitHub, Twitter, Reddit, YouTube, Instagram).

## Output

Returns a JSON object with the queried handle, a profiles map showing each supported social platform with its URL and registration status (true/false), an overall supported flag, a confidence level (e.g. 'high'), and a data_as_of timestamp indicating when the data was last collected. Also includes any warnings and a disclaimer.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "handle"
     ],
     "properties": {
      "handle": {
       "type": "string",
       "description": "Username handle to check"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "handle": "github",
   "profiles": {
    "github": {
     "url": "https://github.com/github",
     "registered": true
    }
   }
  },
  "warnings": [],
  "supported": true,
  "confidence": "high",
  "data_as_of": "2026-06",
  "disclaimer": "Informational support only. Not legal, tax, medical, veterinary, or financial advice. Verify with the cited official source or a qualified professional before acting."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/codepulse-api-domain-social-profile-lookup-894c3ffb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from codepulse-api.hahavoid0.workers.dev](https://www.zero.xyz/host/codepulse-api.hahavoid0.workers.dev/llms.txt)
