Skip to main content
GET
/
api
/
v1
/
agents
/
{id}
Get agent details
curl --request GET \
  --url https://neo.api.projectdiscovery.io/api/v1/agents/{id}
{
  "description": "<string>",
  "has_dynamic_tools": true,
  "has_memory": true,
  "id": "<string>",
  "name": "<string>",
  "tags": [
    "<string>"
  ],
  "tools_count": 123,
  "type": "native",
  "tools": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.neo.projectdiscovery.io/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

id
string
required

Agent ID (snake_case for native, custom ID for user agents)

Response

Agent details

description
string
required
has_dynamic_tools
boolean
required
has_memory
boolean
required
id
string
required
name
string
required
tags
string[]
required
tools_count
integer
required
type
enum<string>
required
Available options:
native,
user
tools
string[]