Skip to main content
DELETE
/
endpoints
/
{endpointId}
Together AI SDK (v1)
# Docs for v2 can be found by changing the above selector ^
from together import Together
import os

client = Together(
    api_key=os.environ.get("TOGETHER_API_KEY"),
)

endpoint = client.endpoints.delete(
    endpoint_id="endpoint-id",
)

print(endpoint)
{
  "error": {
    "message": "<string>",
    "type": "<string>",
    "param": null,
    "code": null
  }
}

Authorizations

Authorization
string
header
default:default
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

endpointId
string
required

The ID of the endpoint to delete

Response

No Content - Endpoint successfully deleted