- Replace ks_live_your_key_here with your generated API key.
- Use Bearer auth for the cleanest default workflow.
- For write requests, send JSON with Content-Type: application/json.
curl https://api.kinkspace.nl/api/account/settings -H "Authorization: Bearer ks_live_your_key_here"
curl "https://api.kinkspace.nl/api/posts?page=1" -H "Authorization: Bearer ks_live_your_key_here"
curl -X POST https://api.kinkspace.nl/api/posts -H "Authorization: Bearer ks_live_your_key_here" -H "Content-Type: application/json" -d '{"body":"Hello from curl","visibility":"public"}'