Docs/API Reference

API Reference

Complete documentation for the Wee-Kit REST API. Create and manage deep links programmatically.

Authentication

The Wee-Kit API uses API keys to authenticate requests. You can view and manage your API keys in the Dashboard.

Important: Keep your API Secret secure. Never expose it in client-side code or public repositories.

Required Headers

HeaderDescription
X-API-KeyYour public API key (starts with dk_)
X-API-SecretYour secret API key (starts with sk_)
Content-Typeapplication/json for POST/PATCH requests
curl -X GET https://api.wee-kit.app/v1/links \
-H "X-API-Key: dk_live_your_api_key" \
-H "X-API-Secret: sk_live_your_api_secret"

Base URL

All API requests should be made to:

https://api.wee-kit.app/v1

Errors

The API uses standard HTTP status codes to indicate success or failure.

StatusDescription
200Success
201Created
400Bad Request - Invalid parameters
401Unauthorized - Invalid API Key
403Forbidden - Invalid API Secret or insufficient permissions
404Not Found - Resource does not exist
429Too Many Requests - Rate limit exceeded
500Internal Server Error