Skip to main content
GET
/
api
/
v2
/
nodes
/
{node_id}
Get Node by Graph Node ID
curl --request GET \
  --url https://your-tenant.bloodhoundenterprise.io/api/v2/nodes/{node_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "node_id": 1234567890,
    "kinds": [
      {
        "node_kind_id": 123,
        "name": "<string>"
      }
    ],
    "properties": {
      "objectid": "<string>",
      "name": "<string>",
      "displayName": "<string>",
      "lastSeen": "2023-11-07T05:31:56Z"
    }
  }
}
Applies to BloodHound Enterprise and CE

Authorizations

Authorization
string
header
required

Authorization: Bearer $JWT_TOKEN

Path Parameters

node_id
integer<int64>
required

The node id assigned by the graph

Response

OK

data
object