Available Actions
searchnewsimages
Input Schema
{
"type": "object",
"required": [
"query"
],
"properties": {
"limit": {
"type": "number",
"default": 10,
"description": "Max results"
},
"query": {
"type": "string",
"description": "Search query"
}
}
}Output Schema
{
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"title": {
"type": "string"
},
"snippet": {
"type": "string"
}
}
}
}Quick Start
API Endpoint
POST /api/execute/web-searchcURL Example
curl -X POST \
https://api.nulayers.com/execute/web-search \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"action": "search"}'