API Quickstart
The ANKK Public API is a RESTful API that allows programmatic management of your multi-channel social media operations using a single brand-scoped API key (spk_...).
📌 Endpoint Overview
Section titled “📌 Endpoint Overview”- Base URL:
https://api.ankk.app - Swagger / Interactive Docs:
https://api.ankk.app/v1/docs - OpenAPI JSON Spec:
https://api.ankk.app/v1/openapi.json
1. Check Service Health
Section titled “1. Check Service Health”Health check endpoints do not require authentication headers.
curl https://api.ankk.app/v1/health{ "service": "api-public", "status": "ok"}2. Obtain & Export Your API Key
Section titled “2. Obtain & Export Your API Key”In the web app (https://app.ankk.app), navigate to Brand Settings → API Keys to generate a key, then export it:
export ANKK_API_KEY='spk_live_xxxxxxxxxxxxxxxx'3. Retrieve Brand & SNS Connections
Section titled “3. Retrieve Brand & SNS Connections”Check your brand status and list connected SNS accounts to obtain target connection_ids.
# 1. Inspect brand detailscurl https://api.ankk.app/v1/brand \ -H "Authorization: Bearer $ANKK_API_KEY"
# 2. List connected SNS accountscurl https://api.ankk.app/v1/brand/connections \ -H "Authorization: Bearer $ANKK_API_KEY"TypeScript / JavaScript
Section titled “TypeScript / JavaScript”const API_KEY = process.env.ANKK_API_KEY!;const BASE_URL = 'https://api.ankk.app/v1';
const res = await fetch(`${BASE_URL}/brand/connections`, { headers: { 'Authorization': `Bearer ${API_KEY}`, },});const { items: connections } = await res.json();console.log('Connected accounts:', connections);const targetConnectionId = connections[0]?.id;Python
Section titled “Python”import osimport requests
API_KEY = os.environ['ANKK_API_KEY']BASE_URL = 'https://api.ankk.app/v1'
headers = {'Authorization': f'Bearer {API_KEY}'}
response = requests.get(f'{BASE_URL}/brand/connections', headers=headers)connections = response.json().get('items', [])print(f'Connected accounts: {connections}')target_connection_id = connections[0]['id']4. Publish Your First Content
Section titled “4. Publish Your First Content”Submit a publishing request with a client-generated idempotency_key to avoid duplicate executions.
curl -X POST "https://api.ankk.app/v1/brand/contents" \ -H "Authorization: Bearer $ANKK_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "connection_id": "conn_01jm8x9k2example", "idempotency_key": "my-first-post-001", "text": "Hello World from ANKK Public API! 🚀" }'TypeScript / JavaScript
Section titled “TypeScript / JavaScript”const publishRes = await fetch(`${BASE_URL}/brand/contents`, { method: 'POST', headers: { 'Authorization': `Bearer ${API_KEY}`, 'Content-Type': 'application/json', }, body: JSON.stringify({ connection_id: targetConnectionId, idempotency_key: `post-${Date.now()}`, text: 'Hello World from TypeScript! 🚀', }),});
const result = await publishRes.json();console.log('Publish accepted (HTTP 202):', result);Python
Section titled “Python”import time
payload = { 'connection_id': target_connection_id, 'idempotency_key': f'post-{int(time.time())}', 'text': 'Hello World from Python! 🚀',}
publish_res = requests.post( f'{BASE_URL}/brand/contents', headers={**headers, 'Content-Type': 'application/json'}, json=payload,)print('Publish outcome:', publish_res.json())5. Verify Publication Status
Section titled “5. Verify Publication Status”A successful request returns HTTP 202 Accepted and a content_id. Verify delivery status via:
curl https://api.ankk.app/v1/brand/contents/<content_id> \ -H "Authorization: Bearer $ANKK_API_KEY"