Platform · Social
Snapchat
Public profiles, Spotlight snaps and their replies.
- Endpoints
- 5
- Base price
- 2 cr
- Source
- Our own scraper
| Endpoint | Returns | Credits |
|---|---|---|
| GET /v1/snapchat/profile | Profile | 2 |
| GET /v1/snapchat/posts | Post[] | 2 |
| GET /v1/snapchat/post | Post | 2 |
| GET /v1/snapchat/comments | Comment[] | 2 |
| GET /v1/snapchat/search | SearchResult[] | 2 |
Core
Profile
2 creditsGet a public profile by handle.
| handle | required | Username without the @. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/snapchat/profile \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=khaby.lame"Posts
2 creditsList a profile's recent posts.
| handle | required | Username without the @. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/snapchat/posts \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=khaby.lame"Post
2 creditsGet a single post by id.
| id | required | The post id on that platform. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/snapchat/post \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Search
2 creditsSearch one platform.
| q | required | What to search for. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/snapchat/search \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=climate tech"Every endpoint also takes fresh=true (skip the cache, 2× price) and include_raw=true (add the platform’s own payload). See Response shape and Credits.
Comments
2 creditsList comments on a post.