Intelligence API
Data freshness is governed by the user role and delay attached. Refer to Roles and data delays for more information.
Authentication
Check the authentication page to see the available options.
Access and authenticationPreCrime Intelligence Feed
Returns a list of indicators between since and until and between min_score and max_score.
01ascendingPossible values: Page number
11000Successful Response
Validation Error
GET /v2/feed/intel HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"items": [
{
"name": "text",
"score": 1,
"created": "2025-12-06T04:23:28.316Z",
"updated": "2025-12-06T04:23:28.316Z",
"type": "domain",
"id": 1
}
],
"total": 1,
"page": 1,
"size": 1,
"pages": 1
}Deprecated version
The following endpoint is deprecated and will be discontinued in July 2026. Please avoid using it for any new implementations. The documentation below is retained for reference purposes.
Returns the list of domains processed from a specific start time, limited by record count and score.
Use this endpoint to retrieve domains that have been analyzed by the PreCrime Intelligence engine within a specified timeframe and matching minimum score criteria.
JWT token obtained from /user/login endpoint
Start date, either ISO 8601 format or Unix timestamp
2024-04-13T01:00:00End date, either ISO 8601 format or Unix timestamp. Limited to 24 hours after the start date
2024-04-14T01:00:00Maximum records returned
2Minimum score threshold (0.0-1.0)
0.8List of domains matching the criteria
Bad request - Invalid parameters
Unauthorized - Invalid or missing authentication token
GET /domain/list?s=text&e=text HTTP/1.1
Host: api.bfore.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"Id": 246884482,
"Name": "spreekwijzen.nl",
"DomainCreated": "2024-04-13T01:13:26",
"ScoreCreated": "2024-04-15T02:38:29",
"Score": 1
},
{
"Id": 246884422,
"Name": "hablasv.com",
"DomainCreated": "2024-04-13T01:13:26",
"ScoreCreated": "2024-04-13T01:13:26",
"Score": 1
}
]Last updated
Was this helpful?