Skip to main content
POST
/
v1
/
enrichments
Enrich an indicator on-demand
curl --request POST \
  --url https://api.example.com/v1/enrichments \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "ip",
  "value": "<string>"
}
'
{
  "data": {
    "type": "ip",
    "value": "<string>",
    "results": {},
    "enriched_at": "2023-11-07T05:31:56Z"
  },
  "meta": {}
}

Body

application/json

Request body for POST /v1/enrichments.

Accepts either {type, value} or {indicator_type, indicator_value}.

type
enum<string>
required

Supported indicator-of-compromise (IOC) types.

Available options:
ip,
domain,
hash_md5,
hash_sha1,
hash_sha256,
url,
email,
account
value
string
required

Response

Successful Response

data
OnDemandEnrichmentResponse · object
required

Response body for POST /v1/enrichments.

meta
Meta · object