Docs / Integrations / CLI
CLI
A RelayRouter command-line tool is not available yet. This page will be updated when it ships.
#What works today
The supported interfaces are the REST API and the OpenAI SDKs. From a terminal, curl covers everything:
terminalbash
curl https://relayrouter.io/v1/chat/completions \
-H "Authorization: Bearer $RELAYROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-v4-flash",
"messages": [{"role": "user", "content": "Hello!"}]
}'See the Quick Start for SDK setup and the API Reference for all endpoints.