https://api.about.com/v1
Overview
Welcome to the #about API. Our RESTful API allows you to programmatically manage projects, upload assets, track analytics, and integrate our creative platform directly into your workflow. All requests are made over HTTPS and return JSON responses.
💡 Quick Start
Sign up at dashboard.about.com to generate your API key. Every request requires authentication via the Authorization header.
Authentication
The #about API uses Bearer tokens for authentication. You can generate API keys from your dashboard under Settings → API Keys.
Authorization: Bearer sk_live_51J3k9mL8vX2nQ4pR7tY9wZ0
Keep your secret keys secure. Never expose them in client-side code or public repositories. For frontend applications, use our published pk_test_ keys.
Rate Limits
API requests are rate-limited to ensure fair usage. Current limits:
| Plan | Requests / Minute | Requests / Day |
|---|---|---|
| Starter | 60 | 10,000 |
| Professional | 300 | 100,000 |
| Enterprise | Custom | Unlimited |
When you exceed limits, the API returns 429 with a Retry-After header.
List all projects
Returns a paginated list of projects associated with your account. Results are sorted by creation date in descending order.
Query Parameters
| Parameter | Type | Description |
|---|---|---|
| limitoptional | integer | Number of items per page (1-100). Default: 20 |
| offsetoptional | integer | Number of items to skip for pagination |
| statusoptional | string | Filter by status: draft, active, archived |
curl https://api.about.com/v1/projects?limit=10\&status=active \\
-H "Authorization: Bearer sk_live_51J3k9mL8vX2nQ4pR7tY9wZ0"
Response Codes
200 Successful retrieval
401 Invalid or missing API key
429 Rate limit exceeded
Create a new project
Creates a new project workspace. Returns the project object with a unique identifier.
Request Body
| Field | Type | Description |
|---|---|---|
| namerequired | string | Project display name (3-50 chars) |
| descriptionoptional | string | Short project description |
| team_idsoptional | array[uuid] | Array of team member IDs to invite |
curl -X POST https://api.about.com/v1/projects \\
-H "Authorization: Bearer sk_live_..." \\
-H "Content-Type: application/json" \\
-d '{"name":"Brand Refresh","description":"Q4 visual overhaul"}'
Retrieve performance metrics
Returns aggregated engagement data, conversion rates, and asset performance for a specified date range.
curl "https://api.about.com/v1/analytics?start=2025-08-01\&end=2025-08-31" \\
-H "Authorization: Bearer sk_live_..."