Quick Start

Get your API keys

Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.

You can generate an API key from your Account page at any time.

Make your first request

To make your first request, send an authenticated request to the me endpoint. This will return your user account details.

Retrieve your user account details

GET https://api.sitespeak.ai/v1/me

Retrieves your user account details and validates that your token is active.

Headers

NameTypeDescription

Authorization*

String

Bearer {api_token}

```json
{
	"user": {
		"id": "",
		"name": "Your Name",
		"email": "your.email@example.com",
		"social_id": null,
		"social_type": null,
		"current_team_id": null,
		"profile_photo_path": null,
		"created_at": "2023-06-20T18:05:18.000000Z",
		"updated_at": "2023-09-24T12:11:48.000000Z",
		"avatar": "",
		"profile_photo_url": ""
	}
}
```

Last updated