curl --request GET \
--url https://api.tryfuse.ai/api/v1/business/analytics/enrichment \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.tryfuse.ai/api/v1/business/analytics/enrichment"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://api.tryfuse.ai/api/v1/business/analytics/enrichment', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"range": "30d",
"enrichment": {
"emailsEnriched": {
"totalSince": 644,
"mode": "week",
"series": [
{
"date": "W30",
"total": 5
},
{
"date": "W31",
"total": 141
},
{
"date": "W32",
"total": 63
},
{
"date": "W33",
"total": 89
},
{
"date": "W34",
"total": 263
},
{
"date": "W35",
"total": 83
}
]
},
"phonesEnriched": {
"totalSince": 801,
"mode": "week",
"series": [
{
"date": "W30",
"total": 0
},
{
"date": "W31",
"total": 150
},
{
"date": "W32",
"total": 122
},
{
"date": "W33",
"total": 84
},
{
"date": "W34",
"total": 398
},
{
"date": "W35",
"total": 47
}
]
},
"contactsSaved": {
"totalSince": 73250,
"mode": "week",
"series": [
{
"date": "W30",
"total": 5
},
{
"date": "W31",
"total": 10916
},
{
"date": "W32",
"total": 25118
},
{
"date": "W33",
"total": 29195
},
{
"date": "W34",
"total": 7381
},
{
"date": "W35",
"total": 635
}
]
},
"contactsSearched": {
"totalSince": 3579,
"mode": "week",
"series": [
{
"date": "W30",
"total": 0
},
{
"date": "W31",
"total": 0
},
{
"date": "W32",
"total": 0
},
{
"date": "W33",
"total": 0
},
{
"date": "W34",
"total": 2977
},
{
"date": "W35",
"total": 602
}
]
}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}Enrichment analytics roll-up
Data-enrichment insights for every user whose contacts the token owner can see: distinct contacts whose email was enriched, whose phone was enriched, that were saved, and prospects searched (derived from Prospect Search credit spend), each as a total for the window plus a zero-filled series. Buckets are daily (mode ‘day’, MM/DD labels) for 7d and ISO-weekly (mode ‘week’, labelled Wnn by ISO week number, e.g. W31) for 30d and 90d. enrichment is null when the aggregation fails. Rate limit: 20 requests per minute, 1000 per day.
Errors:
422VALIDATION_FAILED—rangewas sent and is not one of 7d, 30d or 90d.429RATE_LIMITED— Per-user quota for this endpoint family exceeded (20 per minute, 1000 per day); retry after the Retry-After / RateLimit-Reset seconds.
Requires one of the following token scopes: analytics.
curl --request GET \
--url https://api.tryfuse.ai/api/v1/business/analytics/enrichment \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.tryfuse.ai/api/v1/business/analytics/enrichment"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://api.tryfuse.ai/api/v1/business/analytics/enrichment', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"range": "30d",
"enrichment": {
"emailsEnriched": {
"totalSince": 644,
"mode": "week",
"series": [
{
"date": "W30",
"total": 5
},
{
"date": "W31",
"total": 141
},
{
"date": "W32",
"total": 63
},
{
"date": "W33",
"total": 89
},
{
"date": "W34",
"total": 263
},
{
"date": "W35",
"total": 83
}
]
},
"phonesEnriched": {
"totalSince": 801,
"mode": "week",
"series": [
{
"date": "W30",
"total": 0
},
{
"date": "W31",
"total": 150
},
{
"date": "W32",
"total": 122
},
{
"date": "W33",
"total": 84
},
{
"date": "W34",
"total": 398
},
{
"date": "W35",
"total": 47
}
]
},
"contactsSaved": {
"totalSince": 73250,
"mode": "week",
"series": [
{
"date": "W30",
"total": 5
},
{
"date": "W31",
"total": 10916
},
{
"date": "W32",
"total": 25118
},
{
"date": "W33",
"total": 29195
},
{
"date": "W34",
"total": 7381
},
{
"date": "W35",
"total": 635
}
]
},
"contactsSearched": {
"totalSince": 3579,
"mode": "week",
"series": [
{
"date": "W30",
"total": 0
},
{
"date": "W31",
"total": 0
},
{
"date": "W32",
"total": 0
},
{
"date": "W33",
"total": 0
},
{
"date": "W34",
"total": 2977
},
{
"date": "W35",
"total": 602
}
]
}
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}Authorizations
Your API token (af_…) as the Basic-auth username, with an empty password.
Query Parameters
Rolling window ending now: 7d, 30d (default) or 90d, i.e. the roll-up covers the last 7, 30 or 90 days; time-series bucket sizes (daily, weekly, monthly) are chosen from the window length.
7d, 30d, 90d