Production AI APIs
Production AI, one HTTP call away
Roam Moon Cloud hosts the computer vision and translation models so you do not have to. Send an image or a string, get structured JSON back, from any language, anywhere, with one API key.
No SDK to install. No GPU to rent. No sales call to book.
curl -X POST https://core.roammoon.com/v1/ai/image-classification/classify \
-H "X-API-Key: rm_live_YOUR_KEY" \
-F "file=@photo.jpg"One key, one endpoint, one JSON response. This is the whole integration.
Why teams build on it
Plain HTTP, any language
Every service is an HTTPS endpoint that takes a file upload or JSON and answers with JSON. If your language has an HTTP client, it has a Roam Moon Cloud client.
Structured output, not prose
Responses are documented JSON with confidence scores on every result, so your code can branch on them directly instead of parsing sentences.
Metered per request
Usage is counted per call and visible in the console alongside your invoices, so cost tracks what you actually send.
AI services
Five production endpoints, documented with runnable examples in curl, Python, JavaScript, Java, PHP and Go.
Image classification
Send a photo and get back the most likely labels for what's in it, each with a confidence score.
Read the docsAI translation
Send text and get back a translation between any two of 100 supported languages, priced by how much text you send.
Read the docsFace comparison
Send two face photos and get back whether they belong to the same person, with a similarity score.
Read the docsPPE detection
Send a photo of a scene and get back who is wearing what protective equipment, with a bounding box for every person and every item found.
Read the docsLicense plate recognition
Send a photo of a vehicle and get back a normalised plate number with vehicle type, registration region and confidence, tuned for Vietnamese plates.
Read the docs
How it works
- 1
Create an API key
Sign in to the console and issue a key. Keys are scoped to your account and can be revoked at any time.
- 2
Call the endpoint
Send your image or text to the service URL with the key in the X-API-Key header.
- 3
Read the JSON
Every service answers with a documented JSON shape, including confidence scores, so you can branch on the result directly.
Frequently asked questions
What is Roam Moon Cloud?
Roam Moon Cloud is an AI API platform. It exposes computer vision and translation models over plain HTTP so you can add them to an application without training, hosting or scaling a model yourself.
Which AI services are available?
Five: image classification, face comparison, PPE detection, licence plate recognition, and AI translation across 100 languages.
Do I need to install an SDK?
No. Every service is a plain HTTPS endpoint that accepts a file upload or JSON and returns JSON, so any language with an HTTP client can call it. The documentation shows the same request in curl, Python, JavaScript, Java, PHP and Go.
How do I authenticate?
With an API key sent in the X-API-Key header. You create and revoke keys in the console, and each key belongs to your account only.
Can I use it from outside Vietnam?
Yes. The API is reachable over the public internet from anywhere and the console is available in English and Vietnamese. Image classification, face comparison, PPE detection and translation are region-independent; licence plate recognition is currently optimised for Vietnamese plates.
How is usage priced?
Usage is metered per request and billed against your plan. Current usage, logs and invoices are all visible in the console.
Start with the documentation
Every endpoint is documented with a runnable example. Read it first, then create a key when you are ready to send real traffic.
Open the documentation