Developer guide · Current compatibility

Start with one familiar interface.

The current AI endpoint is OpenAI-compatible. Existing machine clients should continue using the documented llm.shareapi.ai endpoint until a versioned migration is published.

01 · Endpoint

OpenAI-compatible base URL

https://llm.shareapi.ai/v1

Use the endpoint directly for API traffic. Browser-facing content will move independently from machine requests.

02 · Request

Chat completion example

curl https://llm.shareapi.ai/v1/chat/completions \
  -H "Authorization: Bearer $SHAREAPI_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"model":"YOUR_MODEL","messages":[{"role":"user","content":"Hello"}]}'

Model availability and account-specific limits remain visible in the current console.

03 · Policy

API migrations are explicit

POST and streaming endpoints are not migrated by relying on browser redirects. Any future api.shareapi.ai path will be versioned, documented and supported with a client-side endpoint change.

04 · Support

Need help?

Use the current console for account and token management, or email hello@shareapi.ai for integration questions.