[← Back to tools]
serp.google

Search Google: pay per use, no API key

Use SerpApi from Claude, Claude Code, Cursor, ChatGPT, and other agents through one Cralo balance.

Return normalized organic Google results and direct answers through SerpApi.

Price and execution

Price
$0.03
Pricing model
Fixed price per successful call
Execution class
fast

Limits

No additional limits are published for this tool.

Parameters

Fields serp.google accepts as JSON input.

  • safe"active" | "off"Optional

    Whether Google SafeSearch filtering is active.

  • limitintegerOptional

    Maximum number of records to return.

  • querystringRequired

    Google search query.

  • startintegerOptional

    Zero-based result offset in increments of 10 for pagination.

  • countrystringOptional

    Two-letter country code for the Google domain and result market.

  • languagestringOptional

    Two-letter language code for Google results.

  • locationstringOptional

    Geographic location used to localize results, such as `Austin, Texas`.

Raw input JSON Schema
{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "safe": {
      "enum": [
        "active",
        "off"
      ],
      "type": "string",
      "default": "active",
      "description": "Whether Google SafeSearch filtering is active."
    },
    "limit": {
      "type": "integer",
      "default": 10,
      "maximum": 100,
      "minimum": 1,
      "description": "Maximum number of records to return."
    },
    "query": {
      "type": "string",
      "maxLength": 1000,
      "minLength": 1,
      "description": "Google search query."
    },
    "start": {
      "type": "integer",
      "default": 0,
      "maximum": 90,
      "minimum": 0,
      "multipleOf": 10,
      "description": "Zero-based result offset in increments of 10 for pagination."
    },
    "country": {
      "type": "string",
      "default": "us",
      "pattern": "^[A-Za-z]{2}
quot;, "description": "Two-letter country code for the Google domain and result market." }, "language": { "type": "string", "default": "en", "pattern": "^[A-Za-z]{2}
quot;, "description": "Two-letter language code for Google results." }, "location": { "type": "string", "maxLength": 255, "minLength": 1, "description": "Geographic location used to localize results, such as `Austin, Texas`." } }, "additionalProperties": false }

Returns

Fields a successful serp.google call returns.

  • querystringRequired
  • answerstring | nullRequired
  • resultsarray of objectRequired
    • linkstring (uri)Required
    • titlestringRequired
    • snippetstring | nullRequired
    • positionnumberRequired
    • displayed_linkstring | nullRequired
  • search_idstringRequired
  • retrieved_atstring (date-time)Required
  • total_resultsnumber | nullRequired
Raw output JSON Schema
{
  "type": "object",
  "required": [
    "query",
    "results",
    "answer",
    "total_results",
    "search_id",
    "retrieved_at"
  ],
  "properties": {
    "query": {
      "type": "string"
    },
    "answer": {
      "type": [
        "string",
        "null"
      ]
    },
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "position",
          "title",
          "link",
          "displayed_link",
          "snippet"
        ],
        "properties": {
          "link": {
            "type": "string",
            "format": "uri"
          },
          "title": {
            "type": "string"
          },
          "snippet": {
            "type": [
              "string",
              "null"
            ]
          },
          "position": {
            "type": "number",
            "minimum": 0
          },
          "displayed_link": {
            "type": [
              "string",
              "null"
            ]
          }
        },
        "additionalProperties": false
      },
      "maxItems": 100
    },
    "search_id": {
      "type": "string"
    },
    "retrieved_at": {
      "type": "string",
      "format": "date-time"
    },
    "total_results": {
      "type": [
        "number",
        "null"
      ],
      "minimum": 0
    }
  },
  "additionalProperties": false
}

Run this tool

Copy this instruction to your agent to set up Cralo and call this tool with the example input.

Set up Cralo by following https://cralo.ai/SKILL.md, then call the serp.google tool with this input: {"query":"Cralo","country":"us","language":"en"}

Safety notes

Side Effect
read_only
Public Sources Only
Yes

How this compares to using SerpApi directly

You do not need a separate SerpApi account or subscription for this call. Cralo uses one prepaid balance across all tools and shows the per-call price before you run the command.

Related tools

[Browse all tools]