SDK private beta
Use the public API while SDK distribution is in private beta
The REST API and OpenAI-compatible chat endpoint are the supported public integration path. Python and TypeScript SDK source and packages are not publicly distributed yet.
Public integration path
Create a workspace API key in the dashboard, then call the API directly. No SDK installation is required.
export HARDCARRX_API_KEY="hxv_your_workspace_api_key"
curl https://api.hardcarrx.com/v1/chat/completions \
-H "Authorization: Bearer $HARDCARRX_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"provider": "openai",
"model": "gpt-4.1-mini",
"messages": [{"role": "user", "content": "Hello from Hardcarrx"}]
}'Package availability
- The REST API is the supported public integration path.
- Python and TypeScript/Node.js SDKs are private beta.
- No PyPI, npm, or public GitHub availability is claimed.
- Public SDK launch requires signed registry releases, clean-machine installation proof, and published support and versioning policies.
API contract
The API reference documents the currently supported endpoints, request fields, response schemas, and authentication boundary.