Skip to main content

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

EndpointDescription
GET /api/v1/transcriptsSearch and filter transcripts
GET /api/v1/transcripts/:idGet full transcript details
GET /api/v1/marketsList use case categories
GET /api/v1/industriesList buyer industries
GET /api/v1/vendorsList vendor companies
GET /api/v1/productsList software products
GET /api/v1/buyersList buyer companies
GET /api/v1/vendors/:slugFull vendor intelligence profile
GET /api/v1/vendors/:slug/buyersPaginated buyer list for a vendor
GET /api/v1/vendors/:slug/buyers_also_buyProducts 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.