cURL
curl --request POST \ --url https://serverless.tensormesh.ai/detokenize \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "model": "openai/gpt-oss-20b", "tokens": [ 15496, 0 ] } '
{ "prompt": "Hello!" }
Convert token ids back to text with the verified Tensormesh Serverless host.
Authorization: Bearer <API_KEY>
https://serverless.tensormesh.ai
Bearer authentication using your serverless API key. Format: Bearer <API_KEY>
Serverless model name to use.
"openai/gpt-oss-20b"
Successful Response
"Hello!"