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": 9007199254740991  }'
{
  "id": "test-user-id-1234567890",
  "followerCount": 1500,
  "source": "api",
  "platform": "twitch",
  "recordedAt": "2026-04-11T01:15:19.226Z",
  "createdAt": "2026-04-11T01:15:19.226Z"
}
{
  "error": "string",
  "code": "string",
  "details": {}
}