REST API v1 with 10 endpoints. Schedule posts, manage brands, and check subscriptions from any OpenAI-compatible agent.
All API requests go to:
Include your API key in every request:
Add this system prompt to give Codex access to KickitAI:
You have access to the KickitAI API at https://kickitai.com/api/v1.
Auth: Authorization: Bearer kk_live_YOUR_KEY
Use it to schedule posts, manage brands, and check subscription status.
The KickitAI REST API is fully compatible with OpenAI Codex, LangChain, AutoGPT, and any other agent that can make HTTP requests.
# Get profile
curl https://kickitai.com/api/v1/me \
-H "Authorization: Bearer kk_live_YOUR_KEY"
# List brands
curl https://kickitai.com/api/v1/brands \
-H "Authorization: Bearer kk_live_YOUR_KEY"
# Schedule a post
curl -X POST https://kickitai.com/api/v1/posts \
-H "Authorization: Bearer kk_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"brandId":"...","caption":"Hello world","platforms":["instagram"],"scheduledAt":"2026-05-01T10:00:00Z"}'
Explore all 10 endpoints with an interactive playground — try requests directly in your browser:
View Full API Reference →