
curl 'https://api.inworld.ai/v1/chat/completions' \
-H "Content-Type: application/json" \
-H "Authorization: Basic $INWORLD_API_KEY" \
-d '{ "model": "inworld/user-aware", "messages": [{"role": "user", "content": "Hello"}],
"extra_body": {
"metadata": {
"language": "es",
"country": "MX",
"plan": "free"
}
}
}'































































Try each routing strategy live.
curl 'https://api.inworld.ai/v1/chat/completions' \
-H "Authorization: Basic $INWORLD_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "inworld/user-aware",
"messages": [{"role": "user", "content": "Hola, necesito ayuda"}],
"extra_body": {
"metadata": {
"language": "es",
"country": "MX",
"plan": "free"
}
}
}'