Which endpoint should I call?
UsePOST /image-generation for image models and POST /video-generation for video models. Use POST /chat/completions for OpenAI-compatible chat requests and POST /messages for Anthropic-compatible messages.
How do I know which parameters a model supports?
Open the model page in the API Reference. Each model page defines required fields, optional fields, enum values, defaults, descriptions, and example requests.Can I reuse existing OpenAI or Anthropic SDKs?
For chat-compatible endpoints, yes. UsePOST /chat/completions for OpenAI-style integrations and POST /messages for Anthropic-style integrations. Image and video generation use LinkModel’s task-based endpoints.