ClipMyApp REST API

Bring your workspace into your tools.

Fetch projects, recordings, content batches, account status, and connected channels through a small REST API.

Production base URLhttps://api.clipmyapp.com
REST API
api.clipmyapp.com/v1/account
Request
curl \
  https://api.clipmyapp.com/v1/account \
  -H "Authorization: Bearer …"
Bearer token · JSON response
Response
200 OK
{
  "credits": { "balance": 84 },
  "plan": {
    "status": "active",
    "canPublish": true
  },
  "projectCount": 3
}

Reference

Five endpoints. One clear job.

The REST API returns workspace data. Use MCP when an assistant should create, edit, approve, or schedule posts.

GET/v1/account

Credit balance, plan, and the scopes carried by the calling key.

GET/v1/projects

Your projects. A pinned key returns only the project it is pinned to.

GET/v1/recordings

Screen recordings, newest first. Accepts ?projectId and reports whether each one can be used for generation.

GET/v1/packs/:id

One batch of posts with per-item status, hooks, presigned previews, and a ready count.

GET/v1/social-accounts

Connected channels, display fields only. No credentials are returned.

Need creation and scheduling? Use the MCP server

Authentication

One key. Real off switches.

Bearer key
Project pin
Expiry date
Instant revoke

First request

Copy, add your key, run.

curl https://api.clipmyapp.com/v1/account \ -H "Authorization: Bearer YOUR_API_KEY"
Rate limits+
Reads240 per minute per credential
Failed authentication10 per minute per key
Common errors+
401invalid_tokenThe credential is unknown, revoked, or past its expiry date.
403insufficient_scopeThe key is valid but was not granted this capability. The response names every scope the call needs.
400project_requiredThe call needs a project and none was given or inferred.
429rate_limitedToo many requests in the current window. Retryable.
404not_foundNo such resource for this owner.

Production API · https://api.clipmyapp.com

Make your first request.