Skip to main content

Get Threads Publishing Limit

Returns the connected Threads account's publishing quota (250 posts / 1000 replies per 24 hours).

  • Method: GET
  • Endpoint: /api/uploadposts/threads/publishing_limit
  • Authentication: API Key — Authorization: Apikey <YOUR_API_KEY>

Query Parameters

ParameterTypeRequiredDescription
userstringYesThe profile's username.
refreshbooleanNoWhen true, skip the cache and fetch from Threads.

Example Request

curl -G 'https://api.upload-post.com/api/uploadposts/threads/publishing_limit' \
-H 'Authorization: Apikey your-api-key-here' \
-d 'user=your_profile'

Successful Response (200 OK)

{
"success": true,
"platform": "threads",
"posts": { "used": 10, "limit": 250, "remaining": 240, "window_seconds": 86400 },
"replies": { "used": 3, "limit": 1000, "remaining": 997, "window_seconds": 86400 },
"fetched_at": "2026-09-08T12:00:00Z",
"cached": true
}