Platform · Link pages
Linktree
Link-in-bio pages and every link on them.
- Endpoints
- 2
- Base price
- 1 cr
- Source
- Our own scraper
| Endpoint | Returns | Credits |
|---|---|---|
| GET /v1/linktree/profile | Profile | 1 |
| GET /v1/linktree/search | SearchResult[] | 1 |
Core
Profile
1 creditGet 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/linktree/profile \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=selenagomez"Search
1 creditSearch 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/linktree/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.