API Documentation

v1.0

Complete reference for the Momentik REST API. Manage content, analytics, scheduling, and more programmatically.

50+
Endpoints
99.9%
Uptime
<200ms
Response Time
RESTful
API Design
API Reference
Quick Links
Quick Start
Get up and running with the Momentik API in minutes

1. Get Your API Credentials

Sign up for a Momentik account and generate your API credentials from the developer dashboard.

Client ID: mk_live_abc123...
Client Secret: sk_live_def456...

2. Base URL

All API requests should be made to:

https://api.momentik.ai/v1

3. Make Your First Request

Test your credentials by getting an access token:

curl -X POST https://api.momentik.ai/v1/auth/token \ -H "Content-Type: application/json" \ -d '{ "client_id": "your_client_id", "client_secret": "your_client_secret", "grant_type": "client_credentials" }'
Key Concepts

Rate Limiting

API requests are limited to 1000 requests per hour per API key. Rate limit info is included in response headers.

Pagination

List endpoints support cursor-based pagination using cursor and limit parameters.

Timestamps

All timestamps are returned in ISO 8601 format (UTC): 2026-03-27T14:00:00Z

Content Types

All requests should use application/json content type unless uploading files.

Additional Resources