Base URL
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.

GET /v1/projects

List all projects

Returns a paginated list of projects associated with your account. Results are sorted by creation date in descending order.

Query Parameters

ParameterTypeDescription
limitoptionalintegerNumber of items per page (1-100). Default: 20
offsetoptionalintegerNumber of items to skip for pagination
statusoptionalstringFilter 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

POST /v1/projects

Create a new project

Creates a new project workspace. Returns the project object with a unique identifier.

Request Body

FieldTypeDescription
namerequiredstringProject display name (3-50 chars)
descriptionoptionalstringShort project description
team_idsoptionalarray[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"}'
GET /v1/analytics

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_..."