# Bytemine Contact Profile Lookup

> Bytemine Contact Profile Lookup is a paid API for AI agents from bytemine.pay.zeroclick.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieve a specific contact's full profile by their unique contact ID.

## Facts

- Endpoint: GET https://bytemine.pay.zeroclick.io/functions/v1/api-gateway/contacts/:contactId
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bytemine-contact-profile-lookup-e00cd202
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v0p9A8eugWCwfvx5kVGcP

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 bytemine-contact-profile-lookup-e00cd202
```

Example prompt: Pull up the full contact profile for contact ID 'c_abc123' from Bytemine so I can see all their details.

## When to prefer this

Use this endpoint when you already have a specific Bytemine contact ID and need to retrieve that contact's full profile in one call. Prefer this over search or list endpoints when the exact ID is known. Use sibling endpoints like PID-based unlock if you have a prospect identifier but not a Bytemine contact ID.

## Known failure modes

- Contact ID not found — returns 404 or empty response
- Invalid or malformed contact ID format — returns 400 bad request
- Unauthorized access — invalid or missing payment/auth credentials
- Contact record exists but profile fields are partially populated

## How this service works

Retrieve a specific contact's full profile by ID.

## Output

Returns the complete profile record for the specified contact, including available identity fields, contact details, and any stored metadata associated with that contact ID within the Bytemine platform.

## 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",
     "contactId": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bytemine-contact-profile-lookup-e00cd202/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bytemine.pay.zeroclick.io](https://www.zero.xyz/host/bytemine.pay.zeroclick.io/llms.txt)
