Developer platform
The ADMIXEN Public API
Build on ADMIXEN: a versioned REST API for published college and scholarship data, authenticated with organization API keys and documented with OpenAPI 3.1.
Organization owners and admins issue keys from the Organizations & API page in the portal. A key is displayed once at creation and stored only as a hash, so it can never be recovered — rotate by issuing a new key and revoking the old one.
curl -s https://<your-domain>/api/public/v1/colleges?state=Maharashtra&limit=10 \ -H "Authorization: Bearer adx_<prefix>_<secret>"
Every key carries scopes (read, write, analytics), an API version and a per-minute quota. Exceeding the quota returns 429 with a Retry-After header.
GET /api/public/v1/colleges
Published colleges with search, state/city filters and pagination.
GET /api/public/v1/scholarships
Published scholarships ordered by closing date.
GET /api/public/v1/openapi.json
OpenAPI 3.1 description of every versioned endpoint.
The version lives in the path. Breaking changes ship as /v2; additive fields land in place. Responses carry an x-api-version header.
Every authenticated call is metered, and your workspace can review the last calls, status codes and latency on the Organizations & API page.

