1.7 KiB
1.7 KiB
| title | language_tabs | toc_footers | includes | search | code_clipboard | meta | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| slate-test-1770507751 API Documentation |
|
|
|
true | true |
|
Introduction
Welcome to the slate-test-1770507751 API documentation.
This documentation covers all services in the slate-test-1770507751 monorepo. Each service provides a REST API with JSON responses.
Authentication
Most endpoints require authentication via Bearer token:
curl -X GET "https://3jc9hpb5.threesix.ai/api/service-name/endpoint" \
-H "Authorization: Bearer YOUR_TOKEN"
req, _ := http.NewRequest("GET", "https://3jc9hpb5.threesix.ai/api/service-name/endpoint", nil)
req.Header.Set("Authorization", "Bearer YOUR_TOKEN")
Base URLs
| Environment | URL |
|---|---|
| Production | https://3jc9hpb5.threesix.ai |
| Staging | https://staging.3jc9hpb5.threesix.ai |
Response Format
All API responses use a consistent envelope:
{
"data": { ... },
"meta": {
"request_id": "abc123"
}
}
Error responses include an error object:
{
"error": {
"code": "NOT_FOUND",
"message": "Resource not found"
},
"meta": {
"request_id": "abc123"
}
}
Services
The following services are available in this project. Click on a service name to jump to its API documentation.