v1

latestOpenAPI 3.1.12026-07-242899061.7 MB
Links

Search

Search validated relationships between entities in the Links graph with category and type filters.

post/search

Request body

entitiesstring[] required

Entities for which to search for links. Uses Recorded Future entity IDs.

Example request

{
  "entities": [
    "JLHNoH"
  ],
  "filters": {
    "sections": [
      "iU_ZsI"
    ],
    "entity_types": [
      "type:IpAddress"
    ],
    "sources": [
      "technical",
      "insikt"
    ],
    "technical": {
      "timeframe": "-30d",
      "events": [
        "type:MalwareAnalysis"
      ],
      "connected_entities": [
        "idn:google.com"
      ]
    }
  },
  "limits": {
    "per_entity_type": 100
  }
}

Response

Example response

{
  "data": [
    {
      "entity": {
        "type": "type:Malware",
        "id": "JLHNoH",
        "name": "Cobalt Strike"
      },
      "links": [
        {
          "type": "type:IpAddress",
          "id": "ip:8.8.8.8",
          "name": "8.8.8.8",
          "section": "iU_ZsI",
          "attributes": [
            {
              "value": 90
            }
          ]
        }
      ],
      "error": {
        "Source": "RISKRECON_API",
        "ReasonCode": "UNAUTHORIZED",
        "Description": "Unauthorized request",
        "Details": "Some optional detailed human readable explanation for the error."
      }
    }
  ]
}