Accessing Your Deployment
Click the Running card to open the Deployment Details page and find the endpoint URL.


Example: Access via curl
Each request must include the header: Authorization: Bearer <YOUR_API_KEY>
API keys can be found in Settings → Access Keys.
curl --location 'https://2t5y1srid9mo.yottadeos.com/v1/chat/completions' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <YOUR_API_KEY>' \
--data '{
"temperature": 0.5,
"top_p": 0.9,
"max_tokens": 256,
"frequency_penalty": 0.3,
"presence_penalty": 0.2,
"repetition_penalty": 1.2,
"model": "meta-llama/Llama-3.2-3B-Instruct",
"messages": [
{
"role": "user",
"content": "Will the Federal Reserve continue cutting rates in Q4?"
}
],
"stream": false
}'Last updated
Was this helpful?