Get started
Introduction
Roam Moon Cloud exposes production AI APIs over plain HTTP. Send an image, get structured JSON back. No SDK to install, no GPU to run.
How it works
Every call goes through one gateway. It authenticates the API key, checks the workspace's limits, reserves credit, and only then forwards the request to the model.
- Create an API key in the console.
- Send an image to the service endpoint with an X-API-Key header.
- Read the JSON response. Every call is logged with a request ID you can reconcile against.
Your first call
Replace YOUR_KEY with your API key and run:
cURL
curl -X POST https://core.roammoon.com/v1/ai/license-plates/recognize \
-H "X-API-Key: rm_live_YOUR_KEY" \
-F "file=@motorbike.jpg"Base URL
Every endpoint lives under this base URL. HTTPS only.
Base URL
https://core.roammoon.comCredits and limits
Credits are the billing unit. Each recognition costs one credit.
- Credits reset at the start of every billing period.
- You are only charged for successful calls, so a request rejected for a malformed image costs nothing.
- The per-minute request limit is abuse protection, separate from the credit allowance.