Back to Tools

Web Search

Search

Search the web for real-time information using multiple search engines. Returns relevant results with snippets and URLs.

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-search

cURL 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"}'
Integration

Get your API key from the dashboard to start using this tool in your AI applications.