Link Compute
User GuideAPI ReferenceAI ApplicationsSkillsHelp & SupportOneSpark ProgramBusiness Cooperation
Console

API Info

The API Info page gathers the key details needed to integrate with LinkCompute in one place: the API gateway address, the authentication method, common endpoints, and ready-to-copy call examples. When integrating for the first time or troubleshooting address issues, start here.

API Info

API Gateway Address

All compatible requests go to the same gateway address:

https://api.futurecore.com.cn

Use the "Copy" button on the right side of the page to copy it in one click.

Authentication

Pass your token (created in API Tokens) in the request header:

Authorization: Bearer $LINKCOMPUTE_KEY

Replace $LINKCOMPUTE_KEY with the sk-xxxx token you created.

Common Endpoints

MethodPathDescription
POST/v1/chat/completionsChat completions (OpenAI format)
POST/v1/messagesMessages (Anthropic format)
POST/v1/responsesResponses
GET/v1/modelsModel list

Call Examples

The page provides curl examples that toggle between "OpenAI format / Anthropic format"; after copying, just replace $LINKCOMPUTE_KEY with your own token to run. OpenAI format example:

curl https://api.futurecore.com.cn/v1/chat/completions \
  -H "Authorization: Bearer $LINKCOMPUTE_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.4",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

For the complete request fields and more endpoints, see the API documentation.

Last updated on

On this page