Quickstart

This guide helps you integrate DataMind AI in about three minutes and start calling mainstream AI models.

Prerequisites#

  • Create an API key in the DataMind AI Console.
  • Prepare Python 3.8+, Node.js 18+, or any OpenAI-compatible client.
  • Make sure your backend can reach https://api.xpluse.plus.

Choose a protocol#

OpenAI-compatible protocol — The most common integration path for SDKs and clients.

Terminal
curl https://xpluse.plus/v1/chat/completions \
  -H "Authorization: Bearer <your DATAMIND_API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.5",
    "messages": [
      {"role": "user", "content": "What is the meaning of life??"}
    ]
  }'

Anthropic-compatible protocol — Ideal for the Claude SDK or migrating projects that use the Anthropic format.

Gemini-compatible scenarios — If your console has Gemini-compatible models enabled, call them by the display names shown in models.

Next steps#