/v1/modelsList live models
Returns the synced live provider catalog with model IDs, names, context, modalities, pricing, and metadata.
curl https://theverificationplatform.com/v1/models \ -H "Authorization: Bearer tvp_live_YOUR_KEY"
TVP keys use an OpenAI-compatible surface for model discovery, chat completions, and embeddings while keeping usage and key status tracked in the TVP registry.
/v1/modelsReturns the synced live provider catalog with model IDs, names, context, modalities, pricing, and metadata.
curl https://theverificationplatform.com/v1/models \ -H "Authorization: Bearer tvp_live_YOUR_KEY"
/v1/chat/completionsForwards OpenAI-compatible chat requests through the TVP gateway and tracks usage against the TVP key.
curl https://theverificationplatform.com/v1/chat/completions \
-H "Authorization: Bearer tvp_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"openrouter/owl-alpha","messages":[{"role":"user","content":"Say hello from TVP"}]}'/v1/embeddingsForwards OpenAI-compatible embedding requests for embedding-capable models when the upstream provider supports the model.
curl https://theverificationplatform.com/v1/embeddings \
-H "Authorization: Bearer tvp_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"qwen/qwen3-embedding-8b","input":"TVP model procurement"}'Revoked or paused keys are blocked before any upstream provider call is made.
Each key has a monthly request cap and a short-window rate limit enforced server-side.
Final model availability depends on upstream endpoint health, provider permissions, and supported modalities.
TVP records endpoint, status, model, and token usage when returned by the provider response.