curl --request POST \
--url https://serverless.tensormesh.ai/v1/responses \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "openai/gpt-oss-20b",
"input": "Say hello."
}
'{
"id": "resp_123",
"object": "response",
"model": "<string>",
"output": [
{
"id": "out_123",
"type": "message",
"role": "<string>",
"status": "<string>",
"content": [
{
"type": "output_text",
"text": "hello",
"annotations": [
{}
]
}
]
}
],
"created_at": 123,
"status": "<string>"
}Create responses on the verified Tensormesh Serverless host.
curl --request POST \
--url https://serverless.tensormesh.ai/v1/responses \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "openai/gpt-oss-20b",
"input": "Say hello."
}
'{
"id": "resp_123",
"object": "response",
"model": "<string>",
"output": [
{
"id": "out_123",
"type": "message",
"role": "<string>",
"status": "<string>",
"content": [
{
"type": "output_text",
"text": "hello",
"annotations": [
{}
]
}
]
}
],
"created_at": 123,
"status": "<string>"
}Use this page when you want the verified serverless responses endpoint over raw HTTP.Documentation Index
Fetch the complete documentation index at: https://docs.tensormesh.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authorization: Bearer <API_KEY>https://serverless.tensormesh.aiclient.inference.serverless.responses.Bearer authentication using your serverless API key. Format: Bearer <API_KEY>
Was this page helpful?