Page cover

Quick Start

Getting Started

  1. Create an API Key

    1. Access Arcee Platformarrow-up-right, Register or Login.

    2. Access Walletarrow-up-right to top up if needed.

    3. Create an API Key in the API Keysarrow-up-right management page.

    4. Copy your API Key for use and store in a secure location.

Access Arcee Platform, Register or Login.

Create an API Key in the API Keys management page.

  1. Choose Model

Arcee Platform offers a variety of models in different sizes, and you can select the appropriate model based on your needs. For detailed model introductions, please refer to our available modelsarrow-up-right.

  1. Make your first API Call

After preparing your API Key and selecting a model, you can start making API calls. Here are examples using curl, Python, and JavaScript:

curl -X POST "https://api.arcee.ai/api/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer rcai...e7a0" \
  -d '{
    "model": "arcee-ai/trinity-mini-thinking",
    "messages": [
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ]
  }'

Last updated