Skip to main content
GET
/
workspace
/
quotas
All current quotas and utilization stats.
curl --request GET \
  --url https://app.timelines.ai/integrations/api/workspace/quotas \
  --header 'Authorization: Bearer <token>'
{
  "status": "ok",
  "data": {
    "messaging_quota": {
      "total": 10,
      "used": 7,
      "period_start": "2025-02-22 00:00:00 +0100",
      "period_end": "2025-02-22 00:00:00 +0100"
    },
    "api_calls_quota": {
      "total": 10,
      "used": 7,
      "period_start": "2025-02-22 00:00:00 +0100",
      "period_end": "2025-02-22 00:00:00 +0100"
    },
    "seats": {
      "total": 10,
      "used": 7,
      "period_start": "2025-02-22 00:00:00 +0100",
      "period_end": "2025-02-22 00:00:00 +0100"
    },
    "non_recurring_quota": {
      "remaining_balance": 50,
      "last_updated_at": "2025-02-22 00:00:00 +0100"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Success

status
enum<string>
required
Available options:
ok,
error
Example:

"ok"

data
object
required