Page cover

Quick Start

Getting Started

  1. Create an API Key

    1. Access Arcee Platform, Register or Login.

    2. Access Wallet to top up if needed.

    3. Create an API Key in the API Keys 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 the Model List.

  1. Make 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 afm...e7a0" \
  -d '{
    "model": "arcee-ai/AFM-4.5B",
    "messages": [
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ]
  }'

Last updated