Legacy documentation. These pages are inherited from the upstream OpenAffiliate project and may describe endpoints, packages and repositories that Afftera does not operate. For what this site publishes today, see About.

References

REST API

Query the registry with simple HTTP requests. No auth required.

Endpoints

GET
/api/programs

List all programs (?q=, ?category=, ?type=, ?verified=)

GET
/api/programs/{slug}

Get program details by slug

GET
/api/categories

List all categories with program counts

Example

curl
curl "https://openaffiliate.dev/api/programs?q=database&type=recurring&verified=true"

# Response
[
  {
    "slug": "supabase",
    "name": "Supabase",
    "commission": { "type": "recurring", "rate": "10%" },
    "cookieDays": 60,
    "category": "Database",
    "verified": true,
    ...
  }
]