Account
1 endpoint
/{account_slug}
show account
Returns basic information about your Tito account. Use this endpoint to verify your API credentials and retrieve your account details.
Requires authentication
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
account_slug |
path | string | Yes | The unique slug identifier for your Tito account. This is the account identifier you see in your Tito dashboard URL. |
Response fields
| Field | Type | Description |
|---|---|---|
id |
integer | Unique internal identifier for the account |
name |
string | The display name of your Tito account |
Error responses
- 401 – unauthorized - no bearer token provided or token is invalid
- 403 – forbidden - account slug does not match your API token
Example request
curl -H "Authorization: Bearer YOUR_API_TOKEN" \
https://api.staging.pro.tito.io/{account_slug}
Example response
{
"id": 12345,
"name": "My Conference Company"
}