Skip to main content
GET
/
v1
/
buyers
/
{buyer_name}
Get buyer details
curl --request GET \
  --url https://vcm-fyi-api.fly.dev/v1/buyers/{buyer_name} \
  --header 'X-API-KEY: <api-key>'
{
  "buyer_name": "<string>",
  "total_volume": 123,
  "volume_12m": 123,
  "volume_60d": 123,
  "avg_transaction_size": 123,
  "total_transactions": 123,
  "transactions_12m": 123,
  "transactions_60d": 123,
  "transactions_per_year": 123,
  "first_purchase": "2023-12-25",
  "last_purchase": "2023-12-25",
  "days_since_last": 123,
  "top_category": "<string>",
  "top_country": "<string>",
  "top_registry": "<string>",
  "is_active_12m": true,
  "is_active_60d": true
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

buyer_name
string
required

Response

Aggregated buyer statistics including volume, transactions, and activity data

buyer_name
string
required
total_volume
integer
required
volume_12m
integer
required
volume_60d
integer
required
avg_transaction_size
integer
required
total_transactions
integer
required
transactions_12m
integer
required
transactions_60d
integer
required
transactions_per_year
number
required
first_purchase
string<date>
required
last_purchase
string<date>
required
days_since_last
integer
required
top_category
string | null
required
top_country
string | null
required
top_registry
string | null
required
is_active_12m
boolean
required
is_active_60d
boolean
required