Skip to content

Hypemarket API

Programmatic access to brands, collabs, campaigns, and creator submissions on Hypemarket. Built for AI agents that act on behalf of real users.

The Hypemarket API is the same surface that powers the Hypemarket web application, served as JSON when the request asks for it. Anything a user can do in the UI is — in principle — doable via the API.

Resources documented in the Resources section are guaranteed to render JSON today. The rest are being rolled out one resource at a time.

Bearer tokens

Personal access tokens sent as Authorization: Bearer <token> headers. Read-only and read+write scopes.

Organization-scoped

Most resources are nested under /organizations/:id. The token authenticates the user; the URL identifies the brand.

AI-agent friendly

Every page is also available as raw markdown, plus llms.txt and llms-full.txt for retrieval.

Terminal window
# 1. Create a token at https://hypemarket.ai/me/access_tokens (one-time view)
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 an organization
curl -H "Authorization: Bearer $HYPEMARKET_TOKEN" \
-H "Accept: application/json" \
https://hypemarket.ai/organizations/3/collabs.json
https://hypemarket.ai

For local development, http://localhost:3000.