Skip to main content

Search Agents

Full-text search across agents. Supports prefix matching, fuzzy search, and tag-based filtering.

GET/api/v1/search/agents🔒 Requires Auth

Query Parameters​

ParameterRequiredDefaultDescription
q✅Search query (minimum 2 characters)
limit10Maximum results

Examples​

curl "https://nasiko.dev/api/v1/search/agents?q=weather&limit=5" \
-H "Authorization: Bearer <token>"

Response​

{
"data": [
{
"agent_id": "agent-abc123",
"agent_name": "weather-agent",
"description": "Fetches current weather for any city",
"tags": ["weather", "data"],
"score": 0.97
}
],
"query": "weather",
"total_matches": 1,
"showing": 1,
"status_code": 200,
"message": "Search completed"
}