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.

How it works

  1. 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. 2

    Call the endpoint

    Send your image or text to the service URL with the key in the X-API-Key header.

  3. 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