Skip to main content

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 StatusMeaning
200 OKThe request was successful
201 CreatedThe resource was successfully created
204 No ContentSuccess with no body (used for DELETE)
400 Bad RequestInvalid request (e.g., bad URL format, missing required fields)
401 UnauthorizedMissing or invalid API key
403 ForbiddenAPI not available on your plan, tracker limit reached, or insufficient role
404 Not FoundTracker not found or access denied
500 Internal Server ErrorSomething went wrong on our end

Error responses include a JSON body with more details:

{
"error": "Error message here"
}

Supported Platforms

ValueDescription
linkedinLinkedIn profile trackers
twitterX (Twitter) profile trackers
allBoth platforms (list endpoint only)

Available Endpoints