- Estimate credit cost for Functional Area Intelligence
Match Companies
Enrich Companies
Estimate credit cost for Company Hierarchy
Estimate credit cost for company enrichment
Company Hierarchy
Company Functional Area Intelligence
Search Companies
Estimate credit cost for...
Returns the estimated credit cost for a Functional Area Intelligence (FAI) request without consuming any credits or returning data. Use the same parameters as the /functional-areas endpoint.
Security
authorization
FAI estimate request
Company identifier. Provide exactly one of id or domain.
Example:
{ "domain": "microsoft.com" }
Optional filters to narrow FAI results.
Example:
{ "departments": { "ids": [ … ] }, "products": { "ids": [ … ] }, "vendors": { "ids": [ … ] } }
POST
curl -i -X POST \
https://api.hginsights.com/data-api/v2/companies/functional-areas/estimate \
-H 'Authorization: Bearer <YOUR_API_KEY_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"company": {
"domain": "microsoft.com"
},
"filters": {
"departments": {
"ids": [
"3570470BAD94692CE93E32700D2E1CB"
]
},
"products": {
"ids": [
814
]
},
"vendors": {
"ids": [
311,
466
]
}
},
"limit": 100,
"offset": 0,
"sorts": [
{
"direction": "DESC",
"field": "department_usage_share"
}
]
}'Estimate response
Response
{ "available_credits": 1000, "credits_estimate": 12.5, "sufficient_credits": true }