Use KickitAI with Codex & OpenAI

REST API v1 with 10 endpoints. Schedule posts, manage brands, and check subscriptions from any OpenAI-compatible agent.

Get API Key Interactive API Docs

3-Step Setup

1

Get your API key

Send /otp api to the KickitAI bot on WhatsApp.

Get key via WhatsApp →
2

Base URL

All API requests go to:

https://kickitai.com/api/v1
3

Auth header

Include your API key in every request:

Authorization: Bearer kk_live_YOUR_KEY

Codex System Prompt Example

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.
OpenAI Codex KickitAI API
REST API + Bearer Token

Works with any HTTP client

The KickitAI REST API is fully compatible with OpenAI Codex, LangChain, AutoGPT, and any other agent that can make HTTP requests.

curl Examples

# 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"}'

Full API Reference

Explore all 10 endpoints with an interactive playground — try requests directly in your browser:

View Full API Reference →