# MiniMax: minimaxai/minimax-m3

- Model ID: `minimaxai/minimax-m3`
- Provider: MiniMax
- Web version: https://www.moleapi.com/en/models/minimax/minimaxai-minimax-m3
- Content status: catalog

## Model introduction

minimaxai/minimax-m3 is a MiniMax model available through MoleAPI with openai, openai-response, openai-response-compact, anthropic, gemini, openai-alpha-search access. It fits OpenAI compatible, Responses API, Anthropic compatible, Gemini compatible workflows, with pricing synced from the MoleAPI console.

## Model capabilities

- OpenAI compatible
- Responses API
- Anthropic compatible
- Gemini compatible

### Verified specifications

- Catalog status: Currently available on MoleAPI
- Compatible protocols: openai, openai-response, openai-response-compact, anthropic, gemini, openai-alpha-search
- Available billing groups: Temporary (availability may vary)

## Model pricing and access

Pricing is supplied dynamically by the MoleAPI console API.

### Temporary (availability may vary) (temp, x0.1)

- Input: $7.5 / 1M tokens
- Output: $7.5 / 1M tokens

### Access protocols

| Protocol | Method | Endpoint |
| --- | --- | --- |
| openai | POST | /v1/chat/completions |
| openai-response | POST | /v1/responses |
| openai-response-compact | POST | /v1/responses/compact |
| anthropic | POST | /v1/messages |
| gemini | POST | /v1beta/models/{model}:generateContent |
| openai-alpha-search | POST | /v1/alpha/search |

- Live pricing source: https://home.moleapi.com/api/pricing

## About minimaxai/minimax-m3

minimaxai/minimax-m3 is a MiniMax model available through MoleAPI with openai, openai-response, openai-response-compact, anthropic, gemini, openai-alpha-search access. It fits OpenAI compatible, Responses API, Anthropic compatible, Gemini compatible workflows, with pricing synced from the MoleAPI console.

### Sources

- [MoleAPI console pricing catalog](https://home.moleapi.com/api/pricing) — MoleAPI

## Code examples

### cURL

```bash
curl https://api.moleapi.com/v1/responses \
  -H "Authorization: Bearer $MOLEAPI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"minimaxai/minimax-m3","input":"Explain this problem step by step."}'
```

### Python

```python
from openai import OpenAI

client = OpenAI(base_url="https://api.moleapi.com/v1", api_key="YOUR_MOLEAPI_API_KEY")
response = client.responses.create(model="minimaxai/minimax-m3", input="Explain this problem step by step.")
print(response.output_text)
```

### TypeScript

```typescript
import OpenAI from "openai";

const client = new OpenAI({ baseURL: "https://api.moleapi.com/v1", apiKey: process.env.MOLEAPI_API_KEY });
const response = await client.responses.create({ model: "minimaxai/minimax-m3", input: "Explain this problem step by step." });
console.log(response.output_text);
```

## More related models

- [minimax-m3](https://www.moleapi.com/en/models/minimax/minimax-m3) — MiniMax
- [MiniMax-M3](https://www.moleapi.com/en/models/minimax/minimax-m3-alias-1) — MiniMax
- [minimax-m2.7](https://www.moleapi.com/en/models/minimax/minimax-m2.7) — MiniMax
- [gpt-5.6-luna](https://www.moleapi.com/en/models/openai/gpt-5.6-luna) — OpenAI
- [gpt-5.6-sol](https://www.moleapi.com/en/models/openai/gpt-5.6-sol) — OpenAI
- [gpt-5.6-terra](https://www.moleapi.com/en/models/openai/gpt-5.6-terra) — OpenAI

## Frequently asked questions

### How is minimaxai/minimax-m3 priced?

Prices are read from the MoleAPI console API and update with model prices, context tiers, and account groups.

### How can I access minimaxai/minimax-m3?

The catalog currently lists openai, openai-response, openai-response-compact, anthropic, gemini, openai-alpha-search.

### How do I switch an existing project to minimaxai/minimax-m3?

Keep the MoleAPI API address and key, replace the model parameter, and check protocol-specific parameters.

### Where do the minimaxai/minimax-m3 details come from?

Only confirmed availability, pricing, and protocol details from the MoleAPI catalog are included.
