TokenRoute
Get started
Back to models

Body Builder (beta)

openrouter/bodybuilder

Transform your natural language requests into structured OpenRouter API request objects. Describe what you want to accomplish with AI models, and Body Builder will construct the appropriate API calls. Example:...

Pricing

Specs

Context length128K tokens
Max output-
Inputtext
Outputtext

Quickstart

Point the OpenAI SDK at https://tokenroute.app/api/v1 and use a TokenRoute API key.

bash
curl https://tokenroute.app/api/v1/chat/completions \
  -H "Authorization: Bearer $TOKENROUTE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openrouter/bodybuilder",
    "messages": [{ "role": "user", "content": "Hello!" }]
  }'