Skip to main content

Update Follower Count

Update/upsert the follower count.

POST
/follower/update
x-api-key<token>

API key used for authentication

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://loading/api/v1/follower/update" \  -H "Content-Type: application/json" \  -d '{    "followerCount": 1000000000  }'
{
  "id": "test-user-id-1234567890",
  "followerCount": 1500,
  "source": "api",
  "platform": "twitch",
  "recordedAt": "2026-06-01T18:50:27.762Z",
  "createdAt": "2026-06-01T18:50:27.762Z"
}
{
  "error": "string",
  "code": "string",
  "details": {}
}