> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mosaic.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Agent Node

> Get a single agent node instance.

Returns a single agent node instance from your organization’s workspaces.

## Request

```bash theme={null}
curl -X GET "https://api.mosaic.so/agent_nodes/[agent_node_id]" \
  -H "Authorization: Bearer mk_your_api_key"
```

## Response

```json theme={null}
{
  "agent_node": {
    "agent_node_id": "4e2e1ac5-2ca2-4e5c-9b1d-469b6062e704",
    "node_type": {
      "node_type_id": "3b281fb9-9eb2-40f6-b05b-4b6f909a3da9",
      "node_type_name": "AI Music",
      "docs_url": "https://docs.mosaic.so/tiles/ai-music",
      "params_docs_url": "https://docs.mosaic.so/tiles/ai-music#api-info"
    },
    "params_used": {
      "use_intelligent_analysis": true,
      "genre": "Cinematic"
    }
  }
}
```

## Response Fields

| Field                                  | Type           | Description                                              |
| -------------------------------------- | -------------- | -------------------------------------------------------- |
| `agent_node.agent_node_id`             | string         | Agent node instance ID (UUID).                           |
| `agent_node.node_type.node_type_id`    | string         | Node type ID for this agent node.                        |
| `agent_node.node_type.node_type_name`  | string \| null | Node type display name.                                  |
| `agent_node.node_type.docs_url`        | string \| null | Canonical docs page URL (from `nodes.docs_path`).        |
| `agent_node.node_type.params_docs_url` | string \| null | Exact params/API section URL (from `nodes.docs_anchor`). |
| `agent_node.params_used`               | object         | Current params configured on this node instance.         |

For node type catalog lookups, use [GET /node\_types](/api/agent-nodes/get-agent-nodes) and [GET /node\_type/{node_type_id}](/api/node-types/get-node-type).
