Verify your OmniDino API connection in minutes.
Check the Base URL, API key, model list, Chat Completions, and response latency. Results help troubleshoot configuration issues and do not replace usage, billing, or channel records in the OmniDino console.
Test the OmniDino API directly in your browser.
The information entered is used only for requests from this browser. This page does not intentionally save it to the WordPress database or send it to another testing service.
Use curl to verify authentication and model calls separately.
Replace the example API key and model name with your own real values.
curl https://api.omnidino.com/v1/models \
-H "Authorization: Bearer YOUR_OMNIDINO_API_KEY"
curl https://api.omnidino.com/v1/chat/completions \
-H "Authorization: Bearer YOUR_OMNIDINO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "YOUR_MODEL_ID",
"messages": [
{
"role": "user",
"content": "Reply with exactly: OmniDino API connection successful."
}
],
"stream": false,
"max_tokens": 50
}'
curl -N https://api.omnidino.com/v1/chat/completions \
-H "Authorization: Bearer YOUR_OMNIDINO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "YOUR_MODEL_ID",
"messages": [
{
"role": "user",
"content": "Count from 1 to 5."
}
],
"stream": true
}'
curl https://api.omnidino.com/v1/embeddings \
-H "Authorization: Bearer YOUR_OMNIDINO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "YOUR_EMBEDDING_MODEL_ID",
"input": "OmniDino embedding connection test."
}'
curl https://api.omnidino.com/v1/images/generations \
-H "Authorization: Bearer YOUR_OMNIDINO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-image-2",
"prompt": "A small blue dinosaur checking an API dashboard",
"size": "1024x1024"
}'
/models and a low-cost chat model first. After that succeeds, test Images, Embeddings, or high-cost reasoning models.
These tools are useful when you prefer not to use the command line.
Postman
Save request collections, environment variables, headers, and JSON bodies, and inspect complete responses.
GitHubHoppscotch
An open-source web API client for quickly testing REST, SSE, WebSocket, and GraphQL.
GitHubBruno
An open-source desktop API client whose request collections can be stored locally and managed with Git.
GitHubInsomnia
Supports REST, GraphQL, gRPC, and environment variables for debugging requests and authentication.
GitHubcurl
The most direct command-line test, useful for ruling out client configuration and plugin issues.
GitHubVerify each layer in order, starting with the lowest-cost check.
Use the HTTP status code to narrow down the issue quickly.
https://api.omnidino.com/v1 as the base. Avoid appending it twice. /v1。Prove the connection works before integrating the API into production.
Start with /models, complete a minimal chat request with a low-cost model, then test streaming, images, embeddings, and client integration.