GET
/
account
curl --request GET \
  --url https://moderationapi.com/api/v1/account \
  --header 'Authorization: Bearer <token>'
{
  "id": "kj123kaasd",
  "paid_plan_name": "Free trial",
  "text_api_quota": 100,
  "remaining_quota": 50,
  "current_project": {
    "id": "1245abc",
    "name": "My Project"
  }
}

Authorizations

Authorization
string
headerrequired

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

Response

200 - application/json
id
string
required
paid_plan_name
string
required
text_api_quota
number
required
remaining_quota
number
required
current_project
object

Was this page helpful?