User
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
Accept*
String
application/json
Authorization*
String
Bearer {api_token}
{
"user": {
"id": "",
"name": "Your Name",
"email": "[email protected]",
"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": ""
}
}
Retrieve all chatbots for your account
GET
https://api.sitespeak.ai/v1/me/chatbots
Retrieves a list of all chatbots in your account.
Headers
Name
Type
Description
Authorization*
String
Bearer {api_token}
[
{
"id": "030e5b41-1358-490f-ad37-28e69a7847ef",
"name": "Smart Tutor GPT",
"type": "assistant", // Custom GPT
"created_at": "2023-11-24T05:54:51.000000Z",
"updated_at": "2023-11-28T15:24:00.000000Z"
},
{
"id": "0a87c308-a96f-4f53-88ed-eb64857da30s",
"name": "SiteSpeakAI Custom Support",
"type": "customer-support",
"created_at": "2023-11-24T02:23:11.000000Z",
"updated_at": "2023-11-28T15:24:00.000000Z"
},
...
]
Last updated