/v1/accountCredit balance, plan, and the scopes carried by the calling key.
ClipMyApp REST API
Fetch projects, recordings, content batches, account status, and connected channels through a small REST API.
https://api.clipmyapp.comcurl \
https://api.clipmyapp.com/v1/account \
-H "Authorization: Bearer …"{
"credits": { "balance": 84 },
"plan": {
"status": "active",
"canPublish": true
},
"projectCount": 3
}Reference
The REST API returns workspace data. Use MCP when an assistant should create, edit, approve, or schedule posts.
/v1/accountCredit balance, plan, and the scopes carried by the calling key.
/v1/projectsYour projects. A pinned key returns only the project it is pinned to.
/v1/recordingsScreen recordings, newest first. Accepts ?projectId and reports whether each one can be used for generation.
/v1/packs/:idOne batch of posts with per-item status, hooks, presigned previews, and a ready count.
/v1/social-accountsConnected channels, display fields only. No credentials are returned.
Authentication
First request
curl https://api.clipmyapp.com/v1/account \
-H "Authorization: Bearer YOUR_API_KEY"invalid_tokenThe credential is unknown, revoked, or past its expiry date.insufficient_scopeThe key is valid but was not granted this capability. The response names every scope the call needs.project_requiredThe call needs a project and none was given or inferred.rate_limitedToo many requests in the current window. Retryable.not_foundNo such resource for this owner.Production API · https://api.clipmyapp.com