Skip to main content

Vendor Profiles

note

Vendor profile endpoints require the vendor_profiles feature to be enabled on your account. Contact support if you receive 403 Forbidden on these endpoints.

Get a vendor profile

GET /api/v1/vendors/:slug

Returns a full vendor intelligence profile scoped to your provisioned transcripts: ratings, AI-generated likes/dislikes, buyer list, competitive context, and more.

The top-level response includes the first 10 buyers and first 10 "buyers also buy" entries. Use the paginated sub-endpoints for full lists.

Query parameters

ParameterTypeDescription
productstringFilter to a specific product name (e.g. "Salesforce Marketing Cloud")
use_casestringFilter to a specific use case name (e.g. "Email Marketing")

Invalid product or use_case values return 422 Unprocessable Entity.

Example request

curl -H "Authorization: Token YOUR_API_KEY" \
"https://app.alium.io/api/v1/vendors/salesforce"

Response

{
"data": {
"name": "Salesforce",
"slug": "salesforce",
"domain_name": "salesforce.com",
"median_rating": 4.0,
"average_rating": 3.8,
"ratings_count": 47,
"transcript_count": 52,
"buyer_count": 38,
"products": ["Salesforce Marketing Cloud", "Sales Cloud"],
"use_cases": ["Email Marketing", "CRM"],
"likes": [
{"headline": "Strong integrations", "paragraph": "Buyers consistently praised the depth of native connectors..."},
{"headline": "Scalable for enterprise", "paragraph": "Multiple buyers noted the platform handles high data volumes..."}
],
"dislikes": [
{"headline": "High cost", "paragraph": "Pricing was the most commonly cited concern, especially for mid-market buyers..."},
{"headline": "Complex implementation", "paragraph": "Several buyers described lengthy onboarding timelines..."}
],
"buyers": [
{
"company": "Acme Corp",
"domain_name": "acme.com",
"average_rating": 4.5,
"use_cases": ["Email Marketing"],
"transcripts": [
{
"id": "abc123",
"title": "Interview with VP Marketing at Acme Corp",
"date": "2024-03-15",
"display_date": "March 2024",
"buyer_perspective": "Their focus is on...",
"relevant_tech_stack": [
{"product": "Salesforce Marketing Cloud", "rating": 4, "use_cases": ["Email campaigns"]}
]
}
]
}
],
"other_products_in_buyers_tech_stack": [
{
"vendor_slug": "hubspot",
"vendor_name": "HubSpot",
"overlap_pct": 62.5,
"avg_rating_by_vendor_buyers": 3.9,
"avg_rating": 4.1
}
],
"other_products_in_buyers_tech_stack_total_count": 18,
"similar_vendors_by_use_case": [
{"slug": "hubspot", "name": "HubSpot"}
],
"links": {
"buyers": "/api/v1/vendors/salesforce/buyers",
"buyers_also_buy": "/api/v1/vendors/salesforce/buyers_also_buy"
}
}
}

Response fields

FieldTypeDescription
namestringVendor company name
slugstringURL-safe vendor identifier
domain_namestringVendor website domain
median_ratingfloatMedian buyer rating (1–5)
average_ratingfloatAverage buyer rating (1–5)
ratings_countintegerNumber of ratings
transcript_countintegerNumber of transcripts mentioning this vendor
buyer_countintegerNumber of distinct buyers
productsstring[]Products from this vendor found in buyer tech stacks
use_casesstring[]Use cases this vendor is associated with
likesobject[] | nullAI-generated summary of what buyers like (may be null while cache warms)
likes[].headlinestringShort summary of the theme
likes[].paragraphstringDetailed explanation with supporting evidence from transcripts
dislikesobject[] | nullAI-generated summary of what buyers dislike (may be null while cache warms)
dislikes[].headlinestringShort summary of the theme
dislikes[].paragraphstringDetailed explanation with supporting evidence from transcripts
buyersobject[]First 10 buyers (use /buyers sub-endpoint for full list)
buyers[].companystring | nullBuyer company name (null for anonymous transcripts)
buyers[].domain_namestring | nullBuyer company domain (null for anonymous transcripts)
buyers[].average_ratingfloatAverage rating given by this buyer
buyers[].use_casesstring[]Use cases this buyer evaluates the vendor for
buyers[].transcriptsobject[]Transcripts from this buyer referencing the vendor
other_products_in_buyers_tech_stackobject[]First 10 products also found in buyers' tech stacks
other_products_in_buyers_tech_stack_total_countintegerTotal count of co-occurring products
similar_vendors_by_use_caseobject[]Vendors with overlapping use cases
links.buyersstringURL for the paginated buyers sub-endpoint
links.buyers_also_buystringURL for the paginated buyers-also-buy sub-endpoint

List vendor buyers

GET /api/v1/vendors/:slug/buyers

Paginated list of buyers for a vendor. Returns the same buyer objects as the vendor profile.

Query parameters

ParameterTypeDescription
productstringFilter by product name
use_casestringFilter by use case name
pageintegerPage number (default: 1)
per_pageintegerResults per page (default: 5, max: 50)

Response

{
"data": [ /* buyer objects — same shape as in vendor profile */ ],
"meta": {"total_count": 38, "page": 1, "per_page": 5}
}

Buyers also buy

GET /api/v1/vendors/:slug/buyers_also_buy

Paginated list of other products commonly found in the same buyers' tech stacks.

Query parameters

ParameterTypeDescription
productstringFilter by product name
use_casestringFilter by use case name
pageintegerPage number (default: 1)
per_pageintegerResults per page (default: 5, max: 50)

Response

{
"data": [
{
"vendor_slug": "hubspot",
"vendor_name": "HubSpot",
"overlap_pct": 62.5,
"avg_rating_by_vendor_buyers": 3.9,
"avg_rating": 4.1
}
],
"meta": {"total_count": 18, "page": 1, "per_page": 5}
}
FieldTypeDescription
vendor_slugstringURL-safe vendor identifier
vendor_namestringVendor company name
overlap_pctfloatPercentage of buyers who also use this vendor
avg_rating_by_vendor_buyersfloatHow this vendor's buyers rate the co-occurring product
avg_ratingfloatOverall average rating for the co-occurring product