Reference
Endpoints & base URLs
Base URLs, authentication, and the core endpoints used by the SDKs.
Base URLs
| Surface | Base URL |
|---|---|
| Hosted inference | https://ingest.amics.ai |
| Control plane | https://api.amics.ai |
OpenAI-compatible clients should use https://ingest.amics.ai/v1 because those
clients append /chat/completions.
Endpoints
| Endpoint | Purpose | Host |
|---|---|---|
POST /v1/chat/completions | Hosted model inference | ingest.amics.ai |
GET /v1/platform/model-apis | List hosted models enabled for the workspace | api.amics.ai |
POST /v1/platform/models | Create a model deployment project | api.amics.ai |
POST /v1/platform/models/{model_id}/deployments | Create a deployment | api.amics.ai |
POST /v1/model/{model_id}/predict | Predict against your own model | ingest.amics.ai |
POST /v1/platform/training/capacity/quote | Quote compute | api.amics.ai |
POST /v1/platform/training/projects/{project_id}/workstations | Launch compute | api.amics.ai |
POST /v1/platform/training/jobs | Run a training/fine-tuning job | api.amics.ai |
Authentication
Use your API key as a bearer token:
Authorization: Bearer amics_sk_...