MARA Cloud is an enterprise AI inference platform that gives you access to state-of-the-art language models through an OpenAI-compatible API. This guide covers everything you need to get started, from making your first API call to advanced features like function calling and structured outputs.
Developer Quickstart
Make your first API request in minutes.
python
from openai import OpenAI
client = OpenAI(
base_url="https://bczfskny6zqw.poweredby.snova.ai/v1",
api_key="your-api-key",
)
response = client.chat.completions.create(
model="MiniMax-M2.5",
messages=[{"role": "user", "content": "Hello, world!"}],
)
print(response.choices[0].message.content)