Get Buyer Persona Details
Run in Apidog
Get the details of a specific buyer persona by ID, including its name, creation timestamp, and the full set of filter criteria that define it. Credit Note: Retrieving a buyer persona definition does not consume credits.
Request Add parameter in header X-Api-Key
Example: X-Api-Key: ********************
or
Request Code Samples
curl --location 'https://api.leadfeeder.com/v1/buyer-personas/7421?account_id=123456' \
--header 'X-Api-Key: <api-key>' Responses
{
"data" : {
"type" : "buyer_persona" ,
"id" : "7421" ,
"attributes" : {
"name" : "Sales Managers" ,
"created_at" : "2024-12-10T15:57:25Z" ,
"filters" : {
"department" : [
{
"search_value" : "sales" ,
"display_value" : "Sales" ,
"negated" : false
}
] ,
"job_title" : [
{
"search_value" : "Manager" ,
"display_value" : "Manager" ,
"negated" : false
}
] ,
"seniority" : [
{
"search_value" : "director" ,
"display_value" : "Director" ,
"negated" : false
} ,
{
"search_value" : "vp" ,
"display_value" : "VP" ,
"negated" : false
}
] ,
"location" : [
{
"search_value" : "US" ,
"display_value" : "United States" ,
"negated" : true
}
]
}
}
} ,
"meta" : {
"request_id" : "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
}
Modified at 2026-05-22 11:02:07