Skip to main content
GET
/
brains
/
{id}
/
nodes
/
{nodeId}
Get a node
curl --request GET \
  --url https://versuno.ai/api/public/brains/{id}/nodes/{nodeId} \
  --header 'Authorization: <api-key>'
import requests

url = "https://versuno.ai/api/public/brains/{id}/nodes/{nodeId}"

headers = {"Authorization": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: '<api-key>'}};

fetch('https://versuno.ai/api/public/brains/{id}/nodes/{nodeId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://versuno.ai/api/public/brains/{id}/nodes/{nodeId}"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://versuno.ai/api/public/brains/{id}/nodes/{nodeId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
require 'uri'
require 'net/http'

url = URI("https://versuno.ai/api/public/brains/{id}/nodes/{nodeId}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'

response = http.request(request)
puts response.read_body
HttpResponse<String> response = Unirest.get("https://versuno.ai/api/public/brains/{id}/nodes/{nodeId}")
.header("Authorization", "<api-key>")
.asString();
using RestSharp;


var options = new RestClientOptions("https://versuno.ai/api/public/brains/{id}/nodes/{nodeId}");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "<api-key>");
var response = await client.GetAsync(request);

Console.WriteLine("{0}", response.Content);
{
  "id": "f6a7b8c9-d0e1-2345-f012-678901234567",
  "canonical": "app-router-dynamic-routes",
  "content": "Dynamic routes let you generate paths from data...",
  "summary": "Explains how to create dynamic route segments.",
  "metadata": {
    "url": "https://nextjs.org/docs/app/building-your-application/routing/dynamic-routes"
  },
  "createdAt": "2026-06-01T08:10:00.000Z",
  "updatedAt": "2026-06-05T09:30:00.000Z",
  "containerId": "e5f6a7b8-c9d0-1234-ef01-567890123456",
  "parentId": null,
  "type": "page",
  "breadcrumb": "Routing / Dynamic Routes"
}
{
"error": "Invalid API key"
}

Authorizations

Authorization
string
header
default:Bearer uk_live_your_api_key_here
required

Versuno API key. Must be prefixed with Bearer. Format: Bearer uk_live_...

Path Parameters

id
string<uuid>
required

ID of the brain.

nodeId
string<uuid>
required

ID of the node.

Response

The node object.

A node — a single content item within a brain.

id
string<uuid>

Unique identifier for the node.

Example:

"f6a7b8c9-d0e1-2345-f012-678901234567"

canonical
string | null

Canonical title/identifier of the node, or null.

Example:

"app-router-dynamic-routes"

content
string | null

Full content body of the node, or null.

Example:

"Dynamic routes let you generate paths from data..."

summary
string | null

Short AI-generated summary of the node, or null.

Example:

"Explains how to create dynamic route segments."

metadata
object | null

Arbitrary metadata attached to the node, or null.

Example:
{
"url": "https://nextjs.org/docs/app/building-your-application/routing/dynamic-routes"
}
createdAt
string<date-time> | null

When the node was created, or null.

Example:

"2026-06-01T08:10:00.000Z"

updatedAt
string<date-time> | null

When the node was last updated, or null.

Example:

"2026-06-05T09:30:00.000Z"

containerId
string<uuid> | null

ID of the container this node belongs to, or null for a brain-root page node.

Example:

"e5f6a7b8-c9d0-1234-ef01-567890123456"

parentId
string<uuid> | null

ID of the parent node, or null.

Example:

null

type
string

Node type (e.g. page, chunk).

Example:

"page"

breadcrumb
string | null

Human-readable path to the node within the brain, or null.

Example:

"Routing / Dynamic Routes"