Documentation
One request shape, every service
Every one of the 70 services across 26 platforms uses the same base URL, the same auth header and the same response envelope. A credit is worth $0.0015 and each service lists its own credits-per-call cost — most are 1 credit, X and SEO endpoints less.
1. Authentication
Send your key in the X-API-Key header. Keys are created in the dashboard and shown only once — store them as a server-side secret and never ship them in browser code.
X-API-Key: ff_live_xxxxxxxxxxxxxxxxxxxx2. Base URL & endpoint shape
GET https://api.fastfetchz.com/v1/{platform}/{service}?target={handle|url|id}&limit={n}In sandbox mode the same path is served from your project host under /api/public/v1/… so you can test without leaving the app.
3. Parameters
Handle, profile URL, post URL, ASIN, place or keyword — whatever the service resolves.
Maximum items for list-style services. Default 10, max 100.
Pagination cursor returned as next_cursor on list responses.
4. Make a call
curl "https://api.fastfetchz.com/v1/instagram/profile?target=nasa" \
-H "X-API-Key: $FASTFETCHZ_KEY"const res = await fetch(
"https://api.fastfetchz.com/v1/tiktok/user-posts?target=nasa&limit=20",
{ headers: { "X-API-Key": process.env.FASTFETCHZ_KEY } },
);
const payload = await res.json();
console.log(payload.data);import os, requests
res = requests.get(
"https://api.fastfetchz.com/v1/youtube/video-transcript",
params={"target": "dQw4w9WgXcQ"},
headers={"X-API-Key": os.environ["FASTFETCHZ_KEY"]},
)
print(res.json()["data"])5. Errors
Failed calls are never charged. Errors return a JSON body of the shape { error: { code, message, status } }.
Service reference
Each service has its own reference page with parameters, an example request and a full example response.
Instagram · Profile
/v1/instagram/profile
Instagram · Posts
/v1/instagram/posts
Instagram · Reels
/v1/instagram/reels
Instagram · Comments
/v1/instagram/comments
Instagram · Followers / Following
/v1/instagram/followers-following
Instagram · Search / Hashtags
/v1/instagram/search-hashtags
Instagram · Transcript
/v1/instagram/transcript
TikTok · Profile
/v1/tiktok/profile
TikTok · Videos / User Videos
/v1/tiktok/videos-user-videos
TikTok · Comments / Replies
/v1/tiktok/comments-replies
TikTok · Search / Hashtags / Trending
/v1/tiktok/search-hashtags-trending
TikTok · Transcript
/v1/tiktok/transcript