Skip to main content
GET
/
agent_nodes
List Agent Nodes
curl --request GET \
  --url https://api.example.com/agent_nodes
Returns all available node types for your organization, including their documentation links. This endpoint returns node types, not agent node instances, so it does not include an id field.

Request

curl -X GET "https://api.mosaic.so/agent_nodes" \
  -H "Authorization: Bearer mk_your_api_key"

Response

{
  "agent_nodes": [
    {
      "node_type_id": "3b281fb9-9eb2-40f6-b05b-4b6f909a3da9",
      "name": "AI Music",
      "docs": {
        "path": "tiles/ai-music",
        "anchor": "api-info",
        "url": "https://docs.mosaic.so/tiles/ai-music#api-info"
      }
    }
  ]
}

Returned Fields

FieldTypeDescription
node_type_idstringNode type ID.
namestringNode type display name.
docs.pathstring | nullDocs page path.
docs.anchorstring | nullSection anchor on the docs page.
docs.urlstring | nullAbsolute docs URL.