List Trackers
Retrieves all trackers for a specific platform or across all platforms.
Endpoint
GET /api/v1/trackers/{platform}
Path Parameters
| Parameter | Type | Description |
|---|---|---|
platform | string | The platform to list trackers for. Use linkedin, twitter, or all to list across both platforms. |
Response
Returns a JSON object with one key per platform, each containing an array of tracker objects.
Example Request
curl -X GET "https://dash.multifollow.io/api/v1/trackers/all" \
-H "Authorization: Bearer your-api-key-here"
Example Response
{
"linkedin": [
{
"ID": 42,
"IsActive": true,
"CreatedAt": "2025-01-15T10:00:00Z",
"UpdatedAt": "2025-03-20T14:30:00Z",
"URL": "https://www.linkedin.com/in/johndoe/",
"MessageIncludedKeywords": "launch,funding",
"MessageExcludedKeywords": "",
"IsPost": true,
"IsComment": true,
"IsLike": false,
"MonthlyCount": 7,
"URN": ""
}
],
"twitter": [
{
"ID": 10,
"IsActive": true,
"CreatedAt": "2025-02-01T09:00:00Z",
"UpdatedAt": "2025-02-01T09:00:00Z",
"URL": "https://x.com/johndoe",
"MessageIncludedKeywords": "",
"MessageExcludedKeywords": "",
"IsPost": true,
"IsComment": false,
"MonthlyCount": 12
}
]
}