SiteSpeakAI API Docs
Create Your Chatbot
  • Welcome!
  • Quick Start
  • Reference
    • API Reference
      • Chatbot
      • Conversation History
      • Echo Fine-tunes
      • Leads
      • Prompts
      • Query
      • Sources
      • User
Powered by GitBook
On this page
  • Get your API keys
  • Make your first request
  • Retrieve your user account details

Quick Start

PreviousWelcome!NextAPI Reference

Last updated 10 months ago

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 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

Name
Type
Description

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": ""
	}
}
```

Account page