GET
/
v1
/
user
curl --request GET \
  --url https://api.extruct.ai/v1/user \
  --header 'Authorization: Bearer <token>'
{
  "user_id": "<string>",
  "email": "<string>",
  "available_credits": 123,
  "organization_id": "<string>",
  "organization_name": "<string>",
  "organization_slug": "<string>"
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json
Successful Response
user_id
string
required
email
string
required
available_credits
integer
required
organization_id
string | null
organization_name
string | null
organization_slug
string | null