Documentation
Browse guides and endpoints
Getting Started
Get up and running with API Fast in minutes
1. Get Your API Token
Create an account and generate your API token
After signing up, navigate to the API Tokens page and create a new token. Your token will be in the format: apifast_xxx
2. Make Your First Request
Use your token to make API requests
All API requests must include your API token in the Authorization header using the Bearer authentication scheme:
Authorization: Bearer YOUR_API_TOKENHere's an example request to get Instagram user information:
curl -X GET "https://apifast.dev/api/instagram/get-profile?username_or_url=therock" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json"Base URL
All API requests are made to this base URL
https://apifast.dev/apiAuthentication
How to authenticate your requests
Include your API token in the Authorization header of every request:
Authorization: Bearer YOUR_API_TOKEN401 Unauthorized: Invalid or missing API token
Make sure your token is correct and properly formatted in the Authorization header.