Skip to main content

Frequently asked questions (FAQ)

Where do I find the base URL?

The base URL is https://modoo.devdive.me. You can also find the same address in your subscription information (email or dashboard).

How are credits calculated?

Each time you make a call, credits are deducted by the amount of the response's cost. You can check your current remaining credits with GET /v1/credits, and your past usage history with GET /v1/usage (see the API Reference).

What are synchronous and asynchronous?

  • Synchronous — the answer comes back right away when you make a request (e.g. text generation, text-to-speech, image/document analysis).
  • Asynchronous — it takes time, so you first receive a receipt (job_id) and check the result a little later (e.g. image generation, video generation, speech recognition). How to check is covered in the Quickstart.

Does it remember previous conversations?

No. Conversation history is not saved. To carry context forward, include the previous content in this request's messages when you send it.

Can I have the AI run tools on its own?

The function calling (tools) feature, where the model calls external tools on its own, is not supported. Instead, if you want to chain several tasks in sequence, use Workflows.

The generated image/video URL won't open later.

The media URLs you receive in results expire after a certain amount of time. Don't save them — when you need them, look them up again with GET /v1/jobs/{job_id} to get a new URL.

I'm getting a "too many requests" error.

If requests pile up in a short time, you may be briefly limited (429). Wait a moment and try again. For details, see Troubleshooting errors.

I accidentally exposed my key.

Immediately deactivate (revoke) that key and issue a new one in the dashboard. A key is like a password — if it's exposed, someone else can use your credits.