# Snapchat — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Retrieve public Spotlight posts and curated stories from any Snapchat user profile to view their shared content and recent activity. Access the timeline of posts that users have made publicly available on their accounts.

**Category:** Social Media | **Website:** [www.snapchat.com/rigidhd](https://www.snapchat.com/rigidhd) | **Docs:** [parse.bot/marketplace/660244dc-dbcb-4edc-ab89-cbfe1a0cd3f3/snapchat-com-api](https://parse.bot/marketplace/660244dc-dbcb-4edc-ab89-cbfe1a0cd3f3/snapchat-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-snapchat-com-api-660244dc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_user_posts

Fetches public Spotlight posts and curated stories from a Snapchat user's profile page. Returns profile info, up to 25 spotlight posts with engagement stats (views, shares, comments, boosts), and curated story highlights. Users with no public content return empty arrays. A non-existent username returns an upstream 404 error.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `username` | string | Yes | Snapchat username (e.g. 'mangeshdarji007'). Leading '@' is stripped automatically. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-snapchat-com-api-660244dc/get_user_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"username":"<string>"}'
```
