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 Gateway Address
All compatible requests go to the same gateway address:
https://api.futurecore.com.cnUse 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_KEYReplace $LINKCOMPUTE_KEY with the sk-xxxx token you created.
Common Endpoints
| Method | Path | Description |
|---|---|---|
| POST | /v1/chat/completions | Chat completions (OpenAI format) |
| POST | /v1/messages | Messages (Anthropic format) |
| POST | /v1/responses | Responses |
| GET | /v1/models | Model 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