Add Follower

Add a follower count record via the API.

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

API key used for authentication

In: header

followerCountinteger

Current follower count

Range0 <= value <= 9007199254740991
source?string

Source of the follower count (e.g. 'twitch', 'youtube', 'manual')

Default"api"
platform?string

Platform name (e.g. 'twitch', 'youtube'). Defaults to source if not provided.

Response Body

application/json

application/json

curl -X POST "https://loading/api/v1/follower/create" \  -H "Content-Type: application/json" \  -d '{    "followerCount": 9007199254740991  }'
{
  "id": "00000000-0000-0000-0000-000000000000",
  "userId": "test-user-id",
  "followerCount": 1000,
  "source": "api",
  "platform": "api",
  "recordedAt": "2025-11-30T19:52:04.931Z",
  "createdAt": "2025-11-30T19:52:04.931Z"
}
{
  "error": "string",
  "code": "string",
  "details": {}
}