Skip to main content
You’re viewing the v1 documentation for dedicated endpoints. v1 is still supported, but it will be deprecated by the end of 2026. For the current API and workflow, switch to v2 with the version selector at the top of the page, or see the dedicated endpoints overview.

Create an endpoint

To avoid unexpected charges, you can set an auto-shutdown timer when creating an endpoint. Make sure to review your active deployments periodically in the models dashboard to stop endpoints you’re no longer using.
First, list available hardware options for your model:
You’ll see output similar to this:
Shell
Then create the endpoint, using the ID for your preferred hardware option:

Output

A successful create returns the new endpoint object:
These are the two fields you’ll use the most:The endpoint starts in PENDING and moves to STARTED once provisioning finishes (typically a few minutes). You can call the inference API as soon as the state is STARTED.

Target an availability zone

If you have latency or geographic constraints, you can target a specific availability zone. Only do this if you need to, since it can limit hardware availability.

Inspect an endpoint

Get the current state and configuration of an endpoint by ID:
Sample output:

List your endpoints

Start, stop, and restart

Stopping an endpoint pauses billing. Restarting brings it back online without re-provisioning hardware (subject to availability).

Update endpoint settings

You can change replica counts on a running endpoint without re-creating it. Both min_replicas and max_replicas must be supplied together.
For other settings (hardware, decoding optimizations), see Endpoint settings. Some updates require a full deployment.

Delete an endpoint

Deletion is permanent. Stopped endpoints incur no charges, so prefer stopping unless you want to completely remove the endpoint.

Troubleshooting

Endpoints don’t always deploy immediately. Here are the most common reasons:
  • Low availability: Hardware may be available but only enough for a partial replica count. The endpoint starts but scales to the available count. If your minimum replica count is higher than current capacity, the endpoint stays queued until capacity recovers. To avoid the wait, lower the minimum replica count.
  • Hardware unavailable error: If you see “Hardware for endpoint not available now, please try again later”, the hardware you selected is fully claimed. Try a comparable model on different hardware (use whichllm.together.ai to find substitutes), or retry later.
  • Model not supported: Not every model is available for dedicated endpoint deployments. For a list of deployable models, see the dedicated endpoint model catalog. A fine-tuned model can only deploy on a dedicated endpoint if its base model is supported.

Next steps

Quickstart

Deploy and call your first endpoint in 5 minutes.

Available models

Browse the list of available models for instant deployment.

Endpoint settings

Configure endpoint hardware, autoscaling, decoding, prompt caching.

Scaling

Learn how endpoints scale and when to use vertical vs. horizontal scaling.