> ## Documentation Index
> Fetch the complete documentation index at: https://docs.drain.lat/llms.txt
> Use this file to discover all available pages before exploring further.

# Snapchat

> Fetch public Snapchat profile data including subscriber counts and verification status.

# Snapchat

**Base URL:** `https://drain.lat/api/v1/snapchat`

<AccordionGroup>
  <Accordion title="GET /profile/:username" icon="user">
    Fetch a public Snapchat profile.

    ```
    GET /api/v1/snapchat/profile/:username
    ```

    <ParamField path="username" type="string" required>
      The Snapchat username to look up.
    </ParamField>

    <CodeGroup>
      ```bash cURL theme={null}
      curl "https://drain.lat/api/v1/snapchat/profile/djkhaled" \
        -H "x-api-key: YOUR_API_KEY"
      ```

      ```javascript JavaScript theme={null}
      const res = await fetch("https://drain.lat/api/v1/snapchat/profile/djkhaled", {
        headers: { "x-api-key": "YOUR_API_KEY" }
      });
      const data = await res.json();
      ```

      ```python Python theme={null}
      import requests

      res = requests.get(
          "https://drain.lat/api/v1/snapchat/profile/djkhaled",
          headers={"x-api-key": "YOUR_API_KEY"}
      )
      print(res.json())
      ```
    </CodeGroup>

    <ResponseField name="username" type="string">Snapchat username.</ResponseField>
    <ResponseField name="displayName" type="string">Display name.</ResponseField>
    <ResponseField name="bio" type="string">Profile bio.</ResponseField>
    <ResponseField name="avatarUrl" type="string">Avatar image URL.</ResponseField>
    <ResponseField name="subscribers" type="number">Subscriber count.</ResponseField>
    <ResponseField name="isVerified" type="boolean">Whether the account is verified.</ResponseField>
    <ResponseField name="profileUrl" type="string">Link to the Snapchat profile.</ResponseField>

    ```json Response theme={null}
    {
      "username": "djkhaled",
      "displayName": "DJ Khaled",
      "bio": "Another one.",
      "avatarUrl": "https://cf-st.sc-cdn.net/...",
      "subscribers": 4200000,
      "isVerified": true,
      "profileUrl": "https://www.snapchat.com/@djkhaled",
      "scrapedAt": "2026-05-05T12:00:00.000Z"
    }
    ```

    <Note>Only works for public Snapchat profiles. Private accounts return limited data or an error.</Note>
  </Accordion>
</AccordionGroup>
