slate-final-1770511493/docs/source/index.html.md
jordan 0248b8c6e1
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
ci/woodpecker/manual/woodpecker Pipeline was successful
Initialize project from skeleton template
2026-02-08 00:44:54 +00:00

85 lines
1.7 KiB
Markdown

---
title: slate-final-1770511493 API Documentation
language_tabs:
- shell: curl
- go: Go
toc_footers:
- <a href='https://yhf92zmm.threesix.ai'>slate-final-1770511493</a>
- <a href='https://github.com/slatedocs/slate'>Documentation Powered by Slate</a>
includes:
- errors
search: true
code_clipboard: true
meta:
- name: description
content: API documentation for slate-final-1770511493
---
# Introduction
Welcome to the **slate-final-1770511493** API documentation.
This documentation covers all services in the slate-final-1770511493 monorepo. Each service provides a REST API with JSON responses.
## Authentication
Most endpoints require authentication via Bearer token:
```shell
curl -X GET "https://yhf92zmm.threesix.ai/api/service-name/endpoint" \
-H "Authorization: Bearer YOUR_TOKEN"
```
```go
req, _ := http.NewRequest("GET", "https://yhf92zmm.threesix.ai/api/service-name/endpoint", nil)
req.Header.Set("Authorization", "Bearer YOUR_TOKEN")
```
## Base URLs
| Environment | URL |
|-------------|-----|
| Production | `https://yhf92zmm.threesix.ai` |
| Staging | `https://staging.yhf92zmm.threesix.ai` |
## Response Format
All API responses use a consistent envelope:
```json
{
"data": { ... },
"meta": {
"request_id": "abc123"
}
}
```
Error responses include an error object:
```json
{
"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.
<!-- SERVICE_INCLUDES_BELOW -->
<!-- Auto-generated includes will be inserted here by generate-docs.sh -->