Retrieve Domain Reputations

Endpoint URL: https://sage.cybereason.com/rest/download_v1/domain_reputation
Endpoint URI: download_v1/domain_reputation

Action: POST

Returns a list of all domain reputations used by the Cybereason threat intelligence service.

This API is a legacy API and has been deprecated. For the most up-to-date IP address reputation information, use the API to check a specific IP address. For details on this API, see Get a Domain Reputation.

Request Headers

You must add an Content-Type:application/json header with the request.

Note

If you are using cURL, add the authorization cookie details or the path to the file with cookie details with every request.


Request Body

{}

Because this request uses a POST method, you must add a request body. Add only open and closed brackets without parameters between the brackets.


Request Parameters

URL/URI parameters: none

Request Body Parameters: none


Response Status Code

This request can return the following status codes:

  • 200: Success OK or an error message saying why


Response Success Schema

The response contains the following fields:

Field

Type

Parameter

ttl

Integer

Timestamp representing time the data is live.

domainReputationResponseList

Array

An object containing details on the IP address reputations.

requestKey

String

The specific domain address on which you want data.

aggregatedResult

Array

An object containing the details on the domain reputation.

reputationSource

Enum

The source for the reputation classification.

reputationScore

Enum

The reputation score assigned to the domain.


Response Failure Schema

None


Important Response Fields

Important information is found in these fields:

  • domainReputationResponseList object: This object contains the list of all domains you requested. Check to ensure that there are the same number of results in this object as domains about which you requested threat intelligence information.

  • requestKey: The name of the domain about which you want threat intelligence.

  • reputationSource: The source for the threat intelligence classification.

  • reputationScore: The reputation classification for the domain.


Example: Retrieve domain reputations

Request

curl --request POST \
    --url https://sage.cybereason.com/rest/download_v1/domain_reputation \
    --header 'Content-Type:application/json' \
    --data '{}'

Response

Note

This is a partial response, shortened to show the key fields. Your actual response will be much longer and contain all product classifications.

{
    "requestKey": null,
    "ttl": 0,
    "domainReputationResponseList": [
        {
            "requestKey": "jrgs.sfcorporation.com",
            "ttl": 86400000,
            "aggregatedResult": {
                "reputationSource": "Cybereason blocklist",
                "reputationScore": "Malicious"
            }
        },
        {
            "requestKey": "notped.com",
            "ttl": 86400000,
            "aggregatedResult": {
                "reputationSource": "Cybereason blocklist",
                "reputationScore": "Malicious"
            }
        }
    ]
}