---
title: slate-v3-1770514618 API Documentation
language_tabs:
- shell: curl
- go: Go
toc_footers:
- slate-v3-1770514618
- Documentation Powered by Slate
includes:
- errors
search: true
code_clipboard: true
meta:
- name: description
content: API documentation for slate-v3-1770514618
---
# Introduction
Welcome to the **slate-v3-1770514618** API documentation.
This documentation covers all services in the slate-v3-1770514618 monorepo. Each service provides a REST API with JSON responses.
## Authentication
Most endpoints require authentication via Bearer token:
```shell
curl -X GET "https://h4rw6uzr.threesix.ai/api/service-name/endpoint" \
-H "Authorization: Bearer YOUR_TOKEN"
```
```go
req, _ := http.NewRequest("GET", "https://h4rw6uzr.threesix.ai/api/service-name/endpoint", nil)
req.Header.Set("Authorization", "Bearer YOUR_TOKEN")
```
## Base URLs
| Environment | URL |
|-------------|-----|
| Production | `https://h4rw6uzr.threesix.ai` |
| Staging | `https://staging.h4rw6uzr.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.