OVJ API US

Documentation

Use OVJ API US as an OpenAI-compatible gateway for chat, embeddings, image generation, and model discovery. The examples below are ready for the US endpoint.

Base URL

https://api-us.ovj.red/v1

Authentication

Include your API key in the Authorization header for every request:

Authorization: Bearer sk-your-api-key

Common Endpoints

EndpointDescription
POST /v1/chat/completionsChat completions in OpenAI-compatible format.
POST /v1/embeddingsText embeddings for retrieval, ranking, and search.
POST /v1/images/generationsImage generation for supported models.
GET /v1/modelsList currently available models.

Python Example

from openai import OpenAI

client = OpenAI(
    base_url="https://api-us.ovj.red/v1",
    api_key="sk-your-api-key"
)

response = client.chat.completions.create(
    model="deepseek-v4-flash",
    messages=[{"role": "user", "content": "Hello!"}]
)

print(response.choices[0].message.content)

cURL Example

curl https://api-us.ovj.red/v1/chat/completions \
  -H "Authorization: Bearer sk-your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-v4-flash",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

Recommended Getting Started Flow

New users typically follow this sequence:

StepAction
1Create an account in the console.
2Generate an API key from your account dashboard.
3Set your base URL to https://api-us.ovj.red/v1.
4Review model availability and pricing on the pricing page.

Notes

If you already use an OpenAI-compatible SDK or tool, you usually only need to change the base URL, API key, and target model name.

Need More Details?

Visit About for a product overview, or open the console to manage keys and usage.