The Tightknit API follows designs of REST, using clear, resource-based URLs. It supports form-encoded request bodies, returns responses in JSON format, and uses on standard HTTP methods, response codes, and authentication practices.

Endpoint

Tightknit’s REST API endpoint is:

https://api.tightknit.dev

Authentication

API Keys

To understand how to create and manage your API keys, see Developer API Keys .

To authenticate your requests, you need to pass the API key with header: Authorization: <YOUR_API_KEY>

curl https://api.tightknit.dev/admin/v0/... \
  --request POST \
  --header 'Content-Type: application/json' \
  --header "Authorization: Bearer <YOUR_API_KEY>" \
  --data '{ ... }'

Rate Limits

When authenticated using a developer API keys may not exceed 50 requests per second across all APIs.