Skip to content

PaidCollabs API

REST API for collabs, campaigns, and social accounts on app.paidcollabs.com — built for scripts, integrations, and AI agents acting on a user's behalf.
Terminal window
# 1. Create a personal access token at https://app.paidcollabs.com/me/access_tokens
export PAIDCOLLABS_TOKEN="..."
# 2. List the organizations the user belongs to
curl -H "Authorization: Bearer $PAIDCOLLABS_TOKEN" \
-H "Accept: application/json" \
https://app.paidcollabs.com/organizations.json
# 3. List collabs for one of those organizations
curl -H "Authorization: Bearer $PAIDCOLLABS_TOKEN" \
-H "Accept: application/json" \
https://app.paidcollabs.com/organizations/gKpMxN/collabs.json

Base URL https://app.paidcollabs.com in production, http://localhost:3000 in development. IDs are short opaque strings (sqids), not sequential integers — treat them as tokens.

Bearer tokens

Send Authorization: Bearer <token> on every request. Read-only or read+write — see Authentication.

Organization-scoped

Most resources live under /organizations/:id. The token is the user; the URL picks the organization.