Skip to content

Get Threat Actor Relationships

Retrieves relationship information (such as TTPs) for a specific threat actor.

Notes

  • The threatActorId must be URL encoded in the request URL (eg: nlp%2Ff%2Fentity%2Fgz%3Ata%3A68391641-859f-4a9a-9a1e-3e5cf71ec376)
  • The intervalType parameter determines the time period for which relationships are returned
intervalType Parameter Values
LAST_7_DAYS
LAST_30_DAYS
LAST_3_MONTHS
LAST_6_MONTHS
LAST_1_YEAR
FOREVER

OpenAPI definition

json
{
  "openapi": "3.1.0",
  "info": {
    "title": "ML Endpoint",
    "version": "1.0"
  },
  "servers": [
    {
      "url": "https://api.feedly.com/v3/ml"
    }
  ],
  "components": {
    "securitySchemes": {
      "sec0": {
        "type": "apiKey",
        "in": "header",
        "name": "Authorization",
        "x-bearer-format": "bearer"
      }
    }
  },
  "security": [
    {
      "sec0": []
    }
  ],
  "paths": {
    "/relationships/actor/{threatActorId}": {
      "get": {
        "summary": "Get Threat Actor Relationships",
        "description": "Retrieves relationship information (such as TTPs) for a specific threat actor.",
        "operationId": "get-threat-actor-relationships",
        "parameters": [
          {
            "name": "threatActorId",
            "in": "path",
            "description": "The ID of the threat actor (URL encoded)",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "intervalType",
            "in": "query",
            "description": "The time interval for the relationships (e.g., 'FOREVER')",
            "required": true,
            "schema": {
              "type": "string",
              "default": "FOREVER"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200",
            "content": {
              "application/json": {
                "examples": {
                  "Result": {
                    "value": "{}"
                  }
                },
                "schema": {
                  "type": "object",
                  "properties": {}
                }
              }
            }
          },
          "400": {
            "description": "400",
            "content": {
              "application/json": {
                "examples": {
                  "Result": {
                    "value": "{}"
                  }
                },
                "schema": {
                  "type": "object",
                  "properties": {}
                }
              }
            }
          }
        },
        "deprecated": false
      }
    }
  },
  "x-readme": {
    "headers": [],
    "explorer-enabled": true,
    "proxy-enabled": true
  },
  "x-readme-fauxas": true,
  "_id": "660334c44e14a80012542b9a:677ed0fac5750200188c4257"
}