Skip to main content

How do I find the API URL for a model?

Every model runs through one Run endpoint, and its owner/model path comes from the model page address.

Open the model in the model catalog, take the two parts after /models/ in its page address and add them after https://api.wiro.ai/v1/Run/. Every model runs through this endpoint with a POST request. For example, https://wiro.ai/models/claude/fable-5 becomes https://api.wiro.ai/v1/Run/claude/fable-5.

  • If the address ends with ?something=value, leave that out and send it as an input in the request body.

  • Send the request to api.wiro.ai, not wiro.ai, with a capital R in /v1/Run/. Lowercase gives HTTP 404 Parsing url error., and a GET gives Cannot GET.

  • Replace the docs placeholder {owner-slug}/{model-slug}. Left in, it gives tool-not-accessible.

  • If https://wiro.ai/models/{owner}/{model} doesn't open, that path won't work in the API either.

For ready-made code, use the model page's API Integration Guide tab. If you're signed in and choose your project under Select your project, the code includes your real key, so don't share it.

Did this answer your question?