API Overview
The Alium API provides programmatic access to your buyer intelligence library. Search transcripts, retrieve full interview details, and discover filter values — all scoped to your team's provisioned content.
Base URL:
https://app.alium.io/api/v1
Key concepts
- Transcripts are the core content unit — each represents a structured interview with a buyer about their tech stack, vendor opinions, and strategic priorities.
- Quick Studies are AI-generated executive summaries derived from transcripts, available on the detail endpoint.
- All data is scoped to your team — you can only access transcripts provisioned to your account.
Available endpoints
| Endpoint | Description |
|---|---|
GET /api/v1/transcripts | Search and filter transcripts |
GET /api/v1/transcripts/:id | Get full transcript details |
GET /api/v1/markets | List use case categories |
GET /api/v1/industries | List buyer industries |
GET /api/v1/vendors | List vendor companies |
GET /api/v1/products | List software products |
GET /api/v1/buyers | List buyer companies |
GET /api/v1/vendors/:slug | Full vendor intelligence profile |
GET /api/v1/vendors/:slug/buyers | Paginated buyer list for a vendor |
GET /api/v1/vendors/:slug/buyers_also_buy | Products also in buyers' tech stacks |
Quick start
# Search for transcripts mentioning "marketing"
curl -H "Authorization: Token YOUR_API_KEY" \
"https://app.alium.io/api/v1/transcripts?q=marketing&per_page=10"
See Authentication to get started.