Skip to content

Hypemarket API

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

Base URL https://hypemarket.ai 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.