API Documentation
MultiFollow provides a RESTful API that allows you to programmatically manage your trackers. You can create, read, update, and delete trackers for X (Twitter) and LinkedIn profiles.
API access is available on Business and Enterprise plans.
Authentication
All API requests must be authenticated using an API key. Generate API keys from your dashboard under the API section (/api-settings).
Include your API key in the Authorization header as a Bearer token:
Authorization: Bearer your-api-key-here
Base URL
All API endpoints are relative to the following base URL:
https://dash.multifollow.io
Response Codes
| HTTP Status | Meaning |
|---|---|
200 OK | The request was successful |
201 Created | The resource was successfully created |
204 No Content | Success with no body (used for DELETE) |
400 Bad Request | Invalid request (e.g., bad URL format, missing required fields) |
401 Unauthorized | Missing or invalid API key |
403 Forbidden | API not available on your plan, tracker limit reached, or insufficient role |
404 Not Found | Tracker not found or access denied |
500 Internal Server Error | Something went wrong on our end |
Error responses include a JSON body with more details:
{
"error": "Error message here"
}
Supported Platforms
| Value | Description |
|---|---|
linkedin | LinkedIn profile trackers |
twitter | X (Twitter) profile trackers |
all | Both platforms (list endpoint only) |
Available Endpoints
- List Trackers — Get all trackers for a platform or across all platforms
- Get Tracker — Get a specific tracker by ID
- Create Tracker — Create a new tracker
- Update Tracker — Update an existing tracker by ID
- Delete Tracker — Delete a tracker by ID