Skip to main content

Introduction

Claude is an AI chat service provided by Ace Data Cloud, based on the Anthropic Claude series large language models. Through the unified Ace Data Cloud API, you can quickly integrate Claude using JavaScript to achieve multi-turn conversations, system prompts, streaming output, JSON output mode, and more.

Prerequisites

  • Have an Ace Data Cloud account and obtain an API Token
  • Node.js 18+ or a modern browser environment

Basic Usage

The main endpoint to call the Claude API is:
POST https://api.acedata.cloud/v1/chat/completions
This example uses the claude-sonnet-4-6 model.
Available models include: claude-sonnet-4-6, claude-opus-4-5-20251101, claude-3-5-sonnet.
Complete JavaScript code example:
const response = await fetch("https://api.acedata.cloud/v1/chat/completions", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_API_TOKEN",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
  "model": "claude-sonnet-4-6",
  "messages": [
    {
      "role": "user",
      "content": "你好,请介绍一下你自己"
    }
  ],
  "max_tokens": 1024,
  "temperature": 0.7
}),
});

const result = await response.json();
console.log(result);
Please replace YOUR_API_TOKEN with the actual token you obtained from the Ace Data Cloud platform.

Response Handling

It is recommended to check the response status code and handle errors:
if (response.ok) {
  const result = await response.json();
  console.log("Call succeeded:", result);
} else {
  console.error(`Call failed, status code: ${response.status}`);
  const error = await response.text();
  console.error(error);
}

Node.js Wrapper

It is recommended to encapsulate it as a reusable function:
async function callClaude(data) {
  const response = await fetch("https://api.acedata.cloud/v1/chat/completions", {
    method: "POST",
    headers: {
      "Authorization": `Bearer ${process.env.ACE_API_TOKEN}`,
      "Content-Type": "application/json",
    },
    body: JSON.stringify(data),
  });
  if (!response.ok) throw new Error(`API error: ${response.status}`);
  return response.json();
}

Error Handling

Common error codes:
Status CodeDescription
401Authentication failed, please check your API Token
403Insufficient balance or no access
429Request rate limit exceeded
500Internal server error

Next Steps