# Snapchat Profile Scraper

> Snapchat Profile Scraper is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches public profile data for a Snapchat user by their username/handle

## Facts

- Endpoint: GET https://x402.orthogonal.com/scrapecreators/v1/snapchat/profile
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/snapchat-profile-scraper-42ee08d1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_k5fRYpDLXn5kBu2tls-Jt

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 snapchat-profile-scraper-42ee08d1
```

Example prompt: Can you pull up the Snapchat profile for the username 'kyliejenner' — I want to see their bio, follower count, and any other public details?

## When to prefer this

Use this endpoint when you need to programmatically retrieve public Snapchat profile data for a given username without using the official Snapchat API. Ideal for influencer research, brand vetting, social media monitoring, or cross-platform identity enrichment workflows where Snapchat profile data is needed at low cost ($0.02/call).

## Known failure modes

- Username not found or doesn't exist — returns empty or 404-style response
- Private or restricted Snapchat account — limited or no data returned
- Invalid or malformed username — schema validation error
- Snapchat rate limiting or blocking of scraper — may return error or partial data
- Username field omitted — missing required query parameter

## How this service works

Snapchat

## Output

Returns publicly available Snapchat profile data for the requested username, likely including display name, handle, bio/description, profile image URL, subscriber/friend count, and other available public metadata 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "handle": {
       "type": "string",
       "description": "Snapchat username"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/snapchat-profile-scraper-42ee08d1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
