{
  "name": "Marketplace for AI Agents",
  "site": "https://marketplaceforaiagents.com",
  "generatedFor": "autonomous agents",
  "baseUrl": "https://marketplaceforaiagents.com/api/public/v1",
  "exampleEndpoint": "https://marketplaceforaiagents.com/api/public/v1/google-search?q=x402",
  "count": 51,
  "categories": [
    "video",
    "web search",
    "news",
    "images",
    "commerce",
    "places",
    "trends",
    "academic",
    "jobs",
    "finance",
    "travel",
    "app stores",
    "intents"
  ],
  "pricing": {
    "perCall": "$0.005",
    "atomic": "5000",
    "decimals": 6,
    "assetSymbol": "USDC",
    "freeTierCallsPerIdentity": 3
  },
  "settlement": {
    "mainnet": {
      "network": "base",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "payTo": "0x05e82e03753c7bc99fb24d10a876cce53f24b7b7",
      "scheme": "exact"
    },
    "testnet": {
      "network": "base-sepolia",
      "asset": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
      "payTo": "0x05e82e03753c7bc99fb24d10a876cce53f24b7b7",
      "scheme": "exact",
      "facilitator": "https://x402.org/facilitator",
      "note": "Returns mock data in the documented shape. Use for integration tests."
    }
  },
  "discovery": {
    "x402Manifest": "https://marketplaceforaiagents.com/.well-known/x402",
    "aiPlugin": "https://marketplaceforaiagents.com/.well-known/ai-plugin.json",
    "openapi": "https://marketplaceforaiagents.com/api/public/v1/openapi.json",
    "catalog": "https://marketplaceforaiagents.com/api/public/v1/catalog.json",
    "mcp": "https://marketplaceforaiagents.com/mcp",
    "llms": "https://marketplaceforaiagents.com/llms.txt",
    "llmsFull": "https://marketplaceforaiagents.com/llms-full.txt",
    "markdownTwins": "https://marketplaceforaiagents.com/agent/"
  },
  "endpoints": [
    {
      "slug": "youtube-transcripts",
      "title": "YouTube Transcripts API",
      "category": "video",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/youtube-transcripts",
      "agentSummary": "Give a YouTube video ID or URL, get an array of {text, start, duration} caption segments.",
      "description": "Timestamped captions for any public YouTube video, auto-generated or manual, in 100+ languages. Built for LLM ingestion, summarization, and RAG indexing.",
      "useCases": [
        "Summarize a video without downloading media",
        "Index long-form video into a vector store",
        "Quote a speaker with timestamps"
      ],
      "resultsKey": "transcripts",
      "tags": [
        "timestamped",
        "100+ langs",
        "rag"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "video_id",
          "type": "string",
          "required": true,
          "description": "YouTube video ID, watch URL, or share link"
        },
        {
          "name": "lang",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "ISO language code for the transcript"
        },
        {
          "name": "transcript_type",
          "type": "auto | manual",
          "required": false,
          "description": "Transcript source type"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"youtube_transcripts\",\n    \"video_id\": \"0e3GPea1Tyg\",\n    \"lang\": \"en\"\n  },\n  \"transcripts\": [\n    {\n      \"text\": \"Welcome back to the channel.\",\n      \"start\": 0,\n      \"duration\": 3.1\n    },\n    {\n      \"text\": \"Today we're looking at...\",\n      \"start\": 3.1,\n      \"duration\": 4.5\n    }\n  ],\n  \"available_languages\": [\n    {\n      \"name\": \"English\",\n      \"lang\": \"en\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/youtube-transcripts",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/youtube-transcripts.md"
      }
    },
    {
      "slug": "youtube-video",
      "title": "YouTube Video API",
      "category": "video",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/youtube-video",
      "agentSummary": "Give a video ID, get title, channel, view/like counts, publish date, and description text.",
      "description": "Metadata for a single YouTube video: title, description, channel, views, likes, upload date, thumbnails, and tags.",
      "useCases": [
        "Verify a video's recency before citing it",
        "Rank candidate videos by popularity",
        "Extract channel attribution"
      ],
      "resultsKey": "video_results",
      "tags": [
        "metadata",
        "channel",
        "stats"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "video_id",
          "type": "string",
          "required": true,
          "description": "YouTube video ID or watch URL"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"youtube_video\",\n    \"video_id\": \"example\"\n  },\n  \"video_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/youtube-video",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/youtube-video.md"
      }
    },
    {
      "slug": "youtube-search",
      "title": "YouTube Search API",
      "category": "video",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/youtube-search",
      "agentSummary": "Give a query, get ranked YouTube videos with IDs you can feed into the transcripts endpoint.",
      "description": "Search YouTube and get structured video, channel, and playlist results with durations, view counts, and publish dates.",
      "useCases": [
        "Find source videos on a topic",
        "Build a research pipeline: search → transcript → summary"
      ],
      "resultsKey": "video_results",
      "tags": [
        "videos",
        "channels",
        "playlists"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "YouTube search query"
        },
        {
          "name": "gl",
          "type": "string",
          "required": false,
          "default": "us",
          "description": "Country code for results"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "UI/interface language code"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"youtube\",\n    \"q\": \"example\"\n  },\n  \"video_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/youtube-search",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/youtube-search.md"
      }
    },
    {
      "slug": "google-videos",
      "title": "Google Videos API",
      "category": "video",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/google-videos",
      "agentSummary": "Give a query, get cross-platform video results with source URLs.",
      "description": "Video results from Google across YouTube, Vimeo, TikTok, and news sites with thumbnails, durations, and sources.",
      "useCases": [
        "Find video coverage of an event",
        "Cross-platform media monitoring"
      ],
      "resultsKey": "video_results",
      "tags": [
        "cross-platform",
        "thumbnails"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Video search query"
        },
        {
          "name": "location",
          "type": "string",
          "required": false,
          "description": "Localization, e.g. Austin,Texas,United States"
        },
        {
          "name": "gl",
          "type": "string",
          "required": false,
          "default": "us",
          "description": "Country code for results"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "UI/interface language code"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"google_videos\",\n    \"q\": \"example\"\n  },\n  \"video_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/google-videos",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/google-videos.md"
      }
    },
    {
      "slug": "google-search",
      "title": "Google Search API",
      "category": "web search",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/google-search",
      "agentSummary": "Give a query, get ranked organic results with title, link, snippet, plus knowledge graph and related searches.",
      "description": "Real-time Google SERP data: organic results, ads, related searches, inline questions, knowledge graph, and answer boxes as structured JSON.",
      "useCases": [
        "Ground an answer in live web results",
        "Collect citations with URLs",
        "Competitive SERP monitoring"
      ],
      "resultsKey": "organic_results",
      "tags": [
        "organic",
        "knowledge graph",
        "ads"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Search query"
        },
        {
          "name": "location",
          "type": "string",
          "required": false,
          "description": "Localization, e.g. Austin,Texas,United States"
        },
        {
          "name": "gl",
          "type": "string",
          "required": false,
          "default": "us",
          "description": "Country code for results"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "UI/interface language code"
        },
        {
          "name": "num",
          "type": "integer",
          "required": false,
          "default": "10",
          "description": "Number of results to return"
        },
        {
          "name": "page",
          "type": "integer",
          "required": false,
          "description": "Page number for pagination"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"google\",\n    \"q\": \"x402 protocol\"\n  },\n  \"organic_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"x402 — an open protocol for internet payments\",\n      \"link\": \"https://x402.org/\",\n      \"snippet\": \"x402 is an open protocol...\"\n    }\n  ],\n  \"related_searches\": [\n    {\n      \"query\": \"x402 usdc base\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/google-search",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/google-search.md"
      }
    },
    {
      "slug": "google-news",
      "title": "Google News API",
      "category": "news",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/google-news",
      "agentSummary": "Give a query, get recent news items with source, date, and article URL.",
      "description": "Current news articles from Google News with headlines, sources, timestamps, and snippets.",
      "useCases": [
        "Real-time event monitoring",
        "Daily briefing generation",
        "Sentiment sampling on a company"
      ],
      "resultsKey": "news_results",
      "tags": [
        "headlines",
        "real-time",
        "sources"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "News search query"
        },
        {
          "name": "location",
          "type": "string",
          "required": false,
          "description": "Localization, e.g. Austin,Texas,United States"
        },
        {
          "name": "gl",
          "type": "string",
          "required": false,
          "default": "us",
          "description": "Country code for results"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "UI/interface language code"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"google_news\",\n    \"q\": \"example\"\n  },\n  \"news_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/google-news",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/google-news.md"
      }
    },
    {
      "slug": "google-images",
      "title": "Google Images API",
      "category": "images",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/google-images",
      "agentSummary": "Give a query, get image URLs plus the page each image came from.",
      "description": "Google image search results with thumbnails, original URLs, dimensions, and source page context.",
      "useCases": [
        "Source reference imagery",
        "Visual grounding for multimodal models"
      ],
      "resultsKey": "images_results",
      "tags": [
        "thumbnails",
        "source urls",
        "dimensions"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Image search query"
        },
        {
          "name": "gl",
          "type": "string",
          "required": false,
          "default": "us",
          "description": "Country code for results"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "UI/interface language code"
        },
        {
          "name": "num",
          "type": "integer",
          "required": false,
          "default": "10",
          "description": "Number of results to return"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"google_images\",\n    \"q\": \"example\"\n  },\n  \"images_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/google-images",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/google-images.md"
      }
    },
    {
      "slug": "google-lens",
      "title": "Google Lens API",
      "category": "images",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/google-lens",
      "agentSummary": "Give an image URL, get visual matches with titles, links, and prices where available.",
      "description": "Reverse visual search: submit an image URL and get visual matches, related products, and source pages.",
      "useCases": [
        "Identify an object or product from a photo",
        "Find the original source of an image"
      ],
      "resultsKey": "visual_matches",
      "tags": [
        "reverse image",
        "visual match"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "url",
          "type": "string",
          "required": true,
          "description": "Publicly reachable image URL"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "UI/interface language code"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"google_lens\",\n    \"url\": \"example\"\n  },\n  \"visual_matches\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/google-lens",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/google-lens.md"
      }
    },
    {
      "slug": "google-reverse-image",
      "title": "Google Reverse Image API",
      "category": "images",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/google-reverse-image",
      "agentSummary": "Give an image URL, get exact matches (pages hosting that image) and visual matches.",
      "description": "Reverse image lookup powered by Google Lens exact matches: find pages hosting a given image, plus visually similar results.",
      "useCases": [
        "Provenance and misinformation checks",
        "Copyright/usage tracing"
      ],
      "resultsKey": "exact_matches",
      "tags": [
        "provenance",
        "exact matches",
        "google lens"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "image_url",
          "type": "string",
          "required": true,
          "description": "Publicly reachable image URL to reverse-search (forwarded upstream as url)"
        },
        {
          "name": "search_type",
          "type": "string",
          "required": false,
          "default": "exact_matches",
          "description": "exact_matches | all | products"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "UI/interface language code"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"google_lens\",\n    \"image_url\": \"example\"\n  },\n  \"exact_matches\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/google-reverse-image",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/google-reverse-image.md"
      }
    },
    {
      "slug": "google-shopping",
      "title": "Google Shopping API",
      "category": "commerce",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/google-shopping",
      "agentSummary": "Give a product query, get offers with price, merchant, rating, and product link.",
      "description": "Product listings, prices, sellers, and ratings from Google Shopping.",
      "useCases": [
        "Agentic price comparison before a purchase",
        "Track price movement on a SKU"
      ],
      "resultsKey": "shopping_results",
      "tags": [
        "prices",
        "sellers",
        "ratings"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Product search query"
        },
        {
          "name": "location",
          "type": "string",
          "required": false,
          "description": "Localization, e.g. Austin,Texas,United States"
        },
        {
          "name": "gl",
          "type": "string",
          "required": false,
          "default": "us",
          "description": "Country code for results"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "UI/interface language code"
        },
        {
          "name": "num",
          "type": "integer",
          "required": false,
          "default": "10",
          "description": "Number of results to return"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"google_shopping\",\n    \"q\": \"example\"\n  },\n  \"shopping_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/google-shopping",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/google-shopping.md"
      }
    },
    {
      "slug": "google-maps",
      "title": "Google Maps API",
      "category": "places",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/google-maps",
      "agentSummary": "Give a place query (optionally with lat/lng), get businesses with address, rating, and place IDs.",
      "description": "Local business and place search with names, addresses, ratings, review counts, phone numbers, and coordinates.",
      "useCases": [
        "Find and rank local vendors",
        "Resolve a business to a place ID for reviews"
      ],
      "resultsKey": "local_results",
      "tags": [
        "places",
        "ratings",
        "geocoding"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Place or business query"
        },
        {
          "name": "ll",
          "type": "string",
          "required": false,
          "description": "Lat/lng center, e.g. @40.7,-74.0,14z"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "UI/interface language code"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"google_maps\",\n    \"q\": \"example\"\n  },\n  \"local_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/google-maps",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/google-maps.md"
      }
    },
    {
      "slug": "google-maps-reviews",
      "title": "Google Maps Reviews API",
      "category": "places",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/google-maps-reviews",
      "agentSummary": "Give a place_id, get review objects with rating and text for sentiment analysis.",
      "description": "Reviews for a specific Google Maps place, including rating, author, date, and full review text.",
      "useCases": [
        "Summarize customer sentiment for a business",
        "Extract recurring complaints"
      ],
      "resultsKey": "reviews",
      "tags": [
        "reviews",
        "sentiment"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "place_id",
          "type": "string",
          "required": true,
          "description": "Google place ID from the Maps endpoint"
        },
        {
          "name": "sort_by",
          "type": "string",
          "required": false,
          "description": "relevance | newest | highest_rating | lowest_rating"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"google_maps_reviews\",\n    \"place_id\": \"example\"\n  },\n  \"reviews\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/google-maps-reviews",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/google-maps-reviews.md"
      }
    },
    {
      "slug": "google-trends",
      "title": "Google Trends API",
      "category": "trends",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/google-trends",
      "agentSummary": "Give one or more keywords, get a time series of relative interest plus related rising queries.",
      "description": "Interest-over-time, regional interest, and related queries from Google Trends.",
      "useCases": [
        "Detect emerging topics",
        "Compare keyword momentum before a campaign"
      ],
      "resultsKey": "interest_over_time",
      "tags": [
        "time series",
        "related queries"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Trend query (comma-separated to compare up to 5 terms)"
        },
        {
          "name": "geo",
          "type": "string",
          "required": false,
          "description": "Country code, e.g. US"
        },
        {
          "name": "date",
          "type": "string",
          "required": false,
          "description": "Time range, e.g. today 12-m"
        },
        {
          "name": "data_type",
          "type": "string",
          "required": false,
          "default": "TIMESERIES",
          "description": "TIMESERIES | GEO_MAP | RELATED_QUERIES | RELATED_TOPICS"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"google_trends\",\n    \"q\": \"AI agents\"\n  },\n  \"interest_over_time\": [\n    {\n      \"timestamp\": \"2026-01-01\",\n      \"value\": 42\n    }\n  ],\n  \"related_queries\": [\n    {\n      \"query\": \"autonomous agents\",\n      \"value\": 100\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/google-trends",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/google-trends.md"
      }
    },
    {
      "slug": "google-autocomplete",
      "title": "Google Autocomplete API",
      "category": "trends",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/google-autocomplete",
      "agentSummary": "Give a seed query, get the suggestion list Google would show.",
      "description": "Google search suggestions for a seed query — the raw material for keyword and intent discovery.",
      "useCases": [
        "Expand a research query into subtopics",
        "SEO keyword discovery"
      ],
      "resultsKey": "suggestions",
      "tags": [
        "suggestions",
        "keywords"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Seed query"
        },
        {
          "name": "gl",
          "type": "string",
          "required": false,
          "default": "us",
          "description": "Country code for results"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "UI/interface language code"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"google_autocomplete\",\n    \"q\": \"example\"\n  },\n  \"suggestions\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/google-autocomplete",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/google-autocomplete.md"
      }
    },
    {
      "slug": "google-scholar",
      "title": "Google Scholar API",
      "category": "academic",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/google-scholar",
      "agentSummary": "Give a query, get scholarly results with citation counts and resource links.",
      "description": "Academic paper search with titles, authors, publication info, citation counts, and PDF links.",
      "useCases": [
        "Literature review automation",
        "Find primary sources for a claim"
      ],
      "resultsKey": "organic_results",
      "tags": [
        "papers",
        "citations",
        "pdf"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Academic search query"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "UI/interface language code"
        },
        {
          "name": "num",
          "type": "integer",
          "required": false,
          "default": "10",
          "description": "Number of results to return"
        },
        {
          "name": "page",
          "type": "integer",
          "required": false,
          "description": "Page number for pagination"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"google_scholar\",\n    \"q\": \"example\"\n  },\n  \"organic_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/google-scholar",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/google-scholar.md"
      }
    },
    {
      "slug": "google-scholar-author",
      "title": "Google Scholar Author API",
      "category": "academic",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/google-scholar-author",
      "agentSummary": "Give an author_id, get their articles, h-index, and citation history.",
      "description": "Full publication list and citation metrics for a specific Scholar author ID.",
      "useCases": [
        "Assess an expert's credibility",
        "Track a lab's publication output"
      ],
      "resultsKey": "articles",
      "tags": [
        "h-index",
        "publications"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "author_id",
          "type": "string",
          "required": true,
          "description": "Google Scholar author ID"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "UI/interface language code"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"google_scholar_author\",\n    \"author_id\": \"example\"\n  },\n  \"articles\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/google-scholar-author",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/google-scholar-author.md"
      }
    },
    {
      "slug": "google-patents",
      "title": "Google Patents API",
      "category": "academic",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/google-patents",
      "agentSummary": "Give a query, get patents with assignee, dates, and abstract text.",
      "description": "Patent search with titles, assignees, filing and grant dates, abstracts, and PDF links.",
      "useCases": [
        "Prior-art scanning",
        "Track a competitor's IP filings"
      ],
      "resultsKey": "organic_results",
      "tags": [
        "patents",
        "assignees",
        "prior art"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Patent search query"
        },
        {
          "name": "num",
          "type": "integer",
          "required": false,
          "default": "10",
          "description": "Number of results to return"
        },
        {
          "name": "page",
          "type": "integer",
          "required": false,
          "description": "Page number for pagination"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"google_patents\",\n    \"q\": \"example\"\n  },\n  \"organic_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/google-patents",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/google-patents.md"
      }
    },
    {
      "slug": "google-jobs",
      "title": "Google Jobs API",
      "category": "jobs",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/google-jobs",
      "agentSummary": "Give a role query and location, get job postings with apply URLs and job IDs.",
      "description": "Job postings aggregated by Google Jobs with title, company, location, posting age, and apply links.",
      "useCases": [
        "Automated job sourcing",
        "Hiring-signal analysis for a company"
      ],
      "resultsKey": "jobs",
      "tags": [
        "postings",
        "apply links"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Job title or role query"
        },
        {
          "name": "location",
          "type": "string",
          "required": false,
          "description": "Localization, e.g. Austin,Texas,United States"
        },
        {
          "name": "gl",
          "type": "string",
          "required": false,
          "default": "us",
          "description": "Country code for results"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "UI/interface language code"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"google_jobs\",\n    \"q\": \"example\"\n  },\n  \"jobs\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/google-jobs",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/google-jobs.md"
      }
    },
    {
      "slug": "google-finance",
      "title": "Google Finance API",
      "category": "finance",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/google-finance",
      "agentSummary": "Give a ticker like NASDAQ:AAPL, get current price, movement, and key financial stats.",
      "description": "Quotes, price graphs, key stats, and related news for tickers, indexes, currencies, and crypto.",
      "useCases": [
        "Quote lookup inside a trading agent",
        "Fundamentals for a research memo"
      ],
      "resultsKey": "summary",
      "tags": [
        "quotes",
        "markets",
        "crypto"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Ticker in EXCHANGE:SYMBOL form, e.g. NASDAQ:AAPL"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "UI/interface language code"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"google_finance\",\n    \"q\": \"example\"\n  },\n  \"summary\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/google-finance",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/google-finance.md"
      }
    },
    {
      "slug": "google-flights",
      "title": "Google Flights API",
      "category": "travel",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/google-flights",
      "agentSummary": "Give origin, destination, and dates, get priced itineraries with legs and durations.",
      "description": "Flight itineraries with airlines, prices, durations, stops, and carbon estimates.",
      "useCases": [
        "Booking-agent price search",
        "Travel budget planning"
      ],
      "resultsKey": "best_flights",
      "tags": [
        "itineraries",
        "prices",
        "stops"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "departure_id",
          "type": "string",
          "required": true,
          "description": "Origin airport or city code, e.g. JFK"
        },
        {
          "name": "arrival_id",
          "type": "string",
          "required": true,
          "description": "Destination airport or city code, e.g. LHR"
        },
        {
          "name": "outbound_date",
          "type": "date",
          "required": true,
          "description": "YYYY-MM-DD"
        },
        {
          "name": "return_date",
          "type": "date",
          "required": false,
          "description": "YYYY-MM-DD for round trips. Omit for one-way."
        },
        {
          "name": "flight_type",
          "type": "string",
          "required": false,
          "description": "one_way | round_trip. Optional: when return_date is absent the gateway sets one_way automatically."
        },
        {
          "name": "currency",
          "type": "string",
          "required": false,
          "default": "USD",
          "description": "Currency code for prices"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"google_flights\",\n    \"departure_id\": \"example\"\n  },\n  \"best_flights\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/google-flights",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/google-flights.md"
      }
    },
    {
      "slug": "google-hotels",
      "title": "Google Hotels API",
      "category": "travel",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/google-hotels",
      "agentSummary": "Give a destination and date range, get properties with rates and ratings.",
      "description": "Hotel and vacation rental listings with nightly rates, ratings, amenities, and availability.",
      "useCases": [
        "Accommodation comparison for a trip agent",
        "Rate monitoring for a market"
      ],
      "resultsKey": "properties",
      "tags": [
        "rates",
        "amenities",
        "ratings"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Destination query, e.g. Austin hotels"
        },
        {
          "name": "check_in_date",
          "type": "date",
          "required": true,
          "description": "YYYY-MM-DD"
        },
        {
          "name": "check_out_date",
          "type": "date",
          "required": true,
          "description": "YYYY-MM-DD"
        },
        {
          "name": "adults",
          "type": "integer",
          "required": false,
          "default": "2",
          "description": "Number of adult guests"
        },
        {
          "name": "currency",
          "type": "string",
          "required": false,
          "default": "USD",
          "description": "Currency code for rates"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"google_hotels\",\n    \"q\": \"example\"\n  },\n  \"properties\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/google-hotels",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/google-hotels.md"
      }
    },
    {
      "slug": "google-events",
      "title": "Google Events API",
      "category": "places",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/google-events",
      "agentSummary": "Give an event query and a required location, get events with dates, venues, and ticket URLs.",
      "description": "Local and online events with dates, venues, addresses, and ticket links. Requires a location.",
      "useCases": [
        "Local event discovery agents",
        "Conference tracking in a niche"
      ],
      "resultsKey": "events",
      "tags": [
        "events",
        "venues",
        "tickets"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Event query, e.g. AI meetups"
        },
        {
          "name": "location",
          "type": "string",
          "required": true,
          "description": "Localization, e.g. Austin,Texas,United States"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "UI/interface language code"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"google_events\",\n    \"q\": \"example\"\n  },\n  \"events\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/google-events",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/google-events.md"
      }
    },
    {
      "slug": "google-play",
      "title": "Google Play API",
      "category": "app stores",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/google-play",
      "agentSummary": "Give a query, get Play Store apps with package IDs, ratings, and pricing.",
      "description": "Google Play Store search: apps and games with developer, rating, installs, and price.",
      "useCases": [
        "App market research",
        "Competitor tracking in a category"
      ],
      "resultsKey": "organic_results",
      "tags": [
        "android",
        "apps",
        "ratings"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "App search query"
        },
        {
          "name": "store",
          "type": "string",
          "required": false,
          "default": "apps",
          "description": "apps | games | movies | books"
        },
        {
          "name": "gl",
          "type": "string",
          "required": false,
          "default": "us",
          "description": "Country code for results"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "UI/interface language code"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"google_play_store\",\n    \"q\": \"example\"\n  },\n  \"organic_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/google-play",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/google-play.md"
      }
    },
    {
      "slug": "apple-app-store",
      "title": "Apple App Store API",
      "category": "app stores",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/apple-app-store",
      "agentSummary": "Give a query, get iOS apps with developer, rating, and app IDs.",
      "description": "Apple App Store search results with app names, developers, ratings, and store links.",
      "useCases": [
        "iOS competitor analysis",
        "Verify an app's publisher"
      ],
      "resultsKey": "organic_results",
      "tags": [
        "ios",
        "apps",
        "ratings"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "App search query"
        },
        {
          "name": "country",
          "type": "string",
          "required": false,
          "default": "us",
          "description": "Storefront country code"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"apple_app_store\",\n    \"q\": \"example\"\n  },\n  \"organic_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/apple-app-store",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/apple-app-store.md"
      }
    },
    {
      "slug": "bing-search",
      "title": "Bing Search API",
      "category": "web search",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/bing-search",
      "agentSummary": "Give a query, get Bing organic results — a second opinion against Google rankings.",
      "description": "Real-time Bing SERP data with organic results, ads, related searches, and rich snippets.",
      "useCases": [
        "Cross-engine result verification",
        "Broaden retrieval coverage"
      ],
      "resultsKey": "organic_results",
      "tags": [
        "organic",
        "alternative engine"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Search query"
        },
        {
          "name": "num",
          "type": "integer",
          "required": false,
          "default": "10",
          "description": "Number of results to return"
        },
        {
          "name": "mkt",
          "type": "string",
          "required": false,
          "description": "Market code, e.g. en-US"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"bing\",\n    \"q\": \"example\"\n  },\n  \"organic_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/bing-search",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/bing-search.md"
      }
    },
    {
      "slug": "bing-news",
      "title": "Bing News API",
      "category": "news",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/bing-news",
      "agentSummary": "Give a query, get Bing news items with source and publish time.",
      "description": "Current news from Bing with headlines, source names, publish timestamps, and article URLs.",
      "useCases": [
        "News monitoring with a non-Google index",
        "Deduplicate coverage across engines"
      ],
      "resultsKey": "news_results",
      "tags": [
        "headlines",
        "real-time"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "News search query"
        },
        {
          "name": "count",
          "type": "integer",
          "required": false,
          "default": "10",
          "description": "Number of articles"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"bing_news\",\n    \"q\": \"example\"\n  },\n  \"news_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/bing-news",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/bing-news.md"
      }
    },
    {
      "slug": "bing-images",
      "title": "Bing Images API",
      "category": "images",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/bing-images",
      "agentSummary": "Give a query, get Bing image results with original URLs.",
      "description": "Bing image search with thumbnails, full-size URLs, dimensions, and host pages.",
      "useCases": [
        "Alternative image sourcing when Google is thin",
        "Broader visual coverage"
      ],
      "resultsKey": "images_results",
      "tags": [
        "thumbnails",
        "alternative engine"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Image search query"
        },
        {
          "name": "count",
          "type": "integer",
          "required": false,
          "default": "10",
          "description": "Number of images"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"bing_images\",\n    \"q\": \"example\"\n  },\n  \"images_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/bing-images",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/bing-images.md"
      }
    },
    {
      "slug": "bing-videos",
      "title": "Bing Videos API",
      "category": "video",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/bing-videos",
      "agentSummary": "Give a query, get video results across publishers with durations.",
      "description": "Bing video search results with durations, publishers, thumbnails, and source links.",
      "useCases": [
        "Video coverage discovery",
        "Cross-engine media monitoring"
      ],
      "resultsKey": "video_results",
      "tags": [
        "videos",
        "publishers"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Video search query"
        },
        {
          "name": "count",
          "type": "integer",
          "required": false,
          "default": "10",
          "description": "Number of videos"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"bing_videos\",\n    \"q\": \"example\"\n  },\n  \"video_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/bing-videos",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/bing-videos.md"
      }
    },
    {
      "slug": "duckduckgo-search",
      "title": "DuckDuckGo Search API",
      "category": "web search",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/duckduckgo-search",
      "agentSummary": "Give a query, get DuckDuckGo organic results with title, link, and snippet.",
      "description": "DuckDuckGo organic results — a privacy-oriented index with different ranking behavior.",
      "useCases": [
        "Reduce personalization bias in retrieval",
        "Third opinion on rankings"
      ],
      "resultsKey": "organic_results",
      "tags": [
        "privacy",
        "alternative engine"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Search query"
        },
        {
          "name": "gl",
          "type": "string",
          "required": false,
          "default": "us",
          "description": "Country code for results"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "UI/interface language code"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"duckduckgo\",\n    \"q\": \"example\"\n  },\n  \"organic_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/duckduckgo-search",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/duckduckgo-search.md"
      }
    },
    {
      "slug": "yandex-search",
      "title": "Yandex Search API",
      "category": "web search",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/yandex-search",
      "agentSummary": "Give a query, get Yandex organic results for regional coverage.",
      "description": "Yandex SERP data — strongest coverage for Russian-language and regional CIS content.",
      "useCases": [
        "Research non-English regional sources",
        "Regional market monitoring"
      ],
      "resultsKey": "organic_results",
      "tags": [
        "regional",
        "ru"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Search query"
        },
        {
          "name": "lr",
          "type": "string",
          "required": false,
          "description": "Region ID"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"yandex\",\n    \"q\": \"example\"\n  },\n  \"organic_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/yandex-search",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/yandex-search.md"
      }
    },
    {
      "slug": "baidu-search",
      "title": "Baidu Search API",
      "category": "web search",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/baidu-search",
      "agentSummary": "Give a query, get Baidu organic results for China-market coverage.",
      "description": "Baidu SERP data for Chinese-language web research.",
      "useCases": [
        "China market research",
        "Chinese-language source discovery"
      ],
      "resultsKey": "organic_results",
      "tags": [
        "regional",
        "zh"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Search query"
        },
        {
          "name": "num",
          "type": "integer",
          "required": false,
          "default": "10",
          "description": "Number of results to return"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"baidu\",\n    \"q\": \"example\"\n  },\n  \"organic_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/baidu-search",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/baidu-search.md"
      }
    },
    {
      "slug": "naver-search",
      "title": "Naver Search API",
      "category": "web search",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/naver-search",
      "agentSummary": "Give a query, get Naver results across web, blog, and news verticals.",
      "description": "Naver SERP data covering Korea's dominant search portal, including blogs and cafes.",
      "useCases": [
        "Korean market research",
        "Local sentiment sourcing"
      ],
      "resultsKey": "organic_results",
      "tags": [
        "regional",
        "kr"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Search query"
        },
        {
          "name": "where",
          "type": "string",
          "required": false,
          "default": "web",
          "description": "Vertical: web | news | blog | image"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"naver\",\n    \"q\": \"example\"\n  },\n  \"organic_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/naver-search",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/naver-search.md"
      }
    },
    {
      "slug": "yahoo-search",
      "title": "Yahoo Search API",
      "category": "web search",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/yahoo-search",
      "agentSummary": "Give a query, get Yahoo organic results.",
      "description": "Yahoo SERP data with organic results and related searches.",
      "useCases": [
        "Extra retrieval breadth",
        "Legacy-index comparison"
      ],
      "resultsKey": "organic_results",
      "tags": [
        "organic",
        "alternative engine"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Search query"
        },
        {
          "name": "num",
          "type": "integer",
          "required": false,
          "default": "10",
          "description": "Number of results to return"
        },
        {
          "name": "page",
          "type": "integer",
          "required": false,
          "description": "Page number for pagination"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"yahoo\",\n    \"q\": \"example\"\n  },\n  \"organic_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/yahoo-search",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/yahoo-search.md"
      }
    },
    {
      "slug": "amazon-search",
      "title": "Amazon Search API",
      "category": "commerce",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/amazon-search",
      "agentSummary": "Give a product query, get Amazon listings with ASIN, price, and rating.",
      "description": "Amazon product search with ASINs, titles, prices, ratings, review counts, and Prime status.",
      "useCases": [
        "Shopping agents comparing offers",
        "Track a category's price distribution"
      ],
      "resultsKey": "organic_results",
      "tags": [
        "asin",
        "prices",
        "ratings"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Product search query"
        },
        {
          "name": "amazon_domain",
          "type": "string",
          "required": false,
          "default": "amazon.com",
          "description": "Marketplace domain"
        },
        {
          "name": "page",
          "type": "integer",
          "required": false,
          "description": "Page number for pagination"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"amazon_search\",\n    \"q\": \"example\"\n  },\n  \"organic_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/amazon-search",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/amazon-search.md"
      }
    },
    {
      "slug": "amazon-product",
      "title": "Amazon Product API",
      "category": "commerce",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/amazon-product",
      "agentSummary": "Give an ASIN, get the full product record including price, features, and images.",
      "description": "Full Amazon product detail for an ASIN: pricing, variants, features, images, and rating breakdown.",
      "useCases": [
        "Validate a product before an agentic purchase",
        "Extract spec sheets into structured data"
      ],
      "resultsKey": "product",
      "tags": [
        "asin",
        "variants",
        "specs"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "asin",
          "type": "string",
          "required": true,
          "description": "Amazon ASIN"
        },
        {
          "name": "amazon_domain",
          "type": "string",
          "required": false,
          "default": "amazon.com",
          "description": "Marketplace domain"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"amazon_product\",\n    \"asin\": \"example\"\n  },\n  \"product\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/amazon-product",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/amazon-product.md"
      }
    },
    {
      "slug": "amazon-reviews",
      "title": "Amazon Reviews API",
      "category": "commerce",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/amazon-reviews",
      "agentSummary": "Give an ASIN, get review objects for sentiment and defect analysis.",
      "description": "Customer reviews for an ASIN with rating, title, body, date, and verified-purchase status.",
      "useCases": [
        "Summarize product complaints",
        "Quality signal before recommending a product"
      ],
      "resultsKey": "reviews",
      "tags": [
        "reviews",
        "sentiment",
        "verified"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "asin",
          "type": "string",
          "required": true,
          "description": "Amazon ASIN"
        },
        {
          "name": "amazon_domain",
          "type": "string",
          "required": false,
          "default": "amazon.com",
          "description": "Marketplace domain"
        },
        {
          "name": "sort_by",
          "type": "string",
          "required": false,
          "description": "recent | helpful"
        },
        {
          "name": "page",
          "type": "integer",
          "required": false,
          "description": "Page number for pagination"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"amazon_product\",\n    \"asin\": \"example\"\n  },\n  \"reviews\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/amazon-reviews",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/amazon-reviews.md"
      }
    },
    {
      "slug": "walmart-search",
      "title": "Walmart Search API",
      "category": "commerce",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/walmart-search",
      "agentSummary": "Give a query, get Walmart listings with price and product IDs.",
      "description": "Walmart catalog search with product IDs, prices, ratings, and availability.",
      "useCases": [
        "Multi-retailer price comparison",
        "Stock and availability checks"
      ],
      "resultsKey": "organic_results",
      "tags": [
        "retail",
        "prices"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Product search query"
        },
        {
          "name": "page",
          "type": "integer",
          "required": false,
          "description": "Page number for pagination"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"walmart_search\",\n    \"q\": \"example\"\n  },\n  \"organic_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/walmart-search",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/walmart-search.md"
      }
    },
    {
      "slug": "ebay-search",
      "title": "eBay Search API",
      "category": "commerce",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/ebay-search",
      "agentSummary": "Give a query, get eBay listings including auction state and condition.",
      "description": "eBay listings with prices, shipping, condition, bid counts, and seller info.",
      "useCases": [
        "Secondhand and collectible price discovery",
        "Arbitrage scanning"
      ],
      "resultsKey": "organic_results",
      "tags": [
        "auctions",
        "condition",
        "shipping"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Listing search query"
        },
        {
          "name": "ebay_domain",
          "type": "string",
          "required": false,
          "default": "ebay.com",
          "description": "eBay marketplace domain"
        },
        {
          "name": "page",
          "type": "integer",
          "required": false,
          "description": "Page number for pagination"
        }
      ],
      "responseSample": "{\n  \"search_metadata\": {\n    \"id\": \"search_...\",\n    \"status\": \"Success\",\n    \"created_at\": \"2026-06-18T12:00:00Z\"\n  },\n  \"search_parameters\": {\n    \"engine\": \"ebay_search\",\n    \"q\": \"example\"\n  },\n  \"organic_results\": [\n    {\n      \"position\": 1,\n      \"title\": \"Example result\",\n      \"link\": \"https://example.com/1\",\n      \"snippet\": \"Structured JSON result.\"\n    }\n  ]\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/ebay-search",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/ebay-search.md"
      }
    },
    {
      "slug": "serp-stack",
      "title": "SERP Stack Intent",
      "category": "intents",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/serp-stack",
      "agentSummary": "Give a query, get Google + Bing + DuckDuckGo organic results in one response.",
      "description": "One query, three independent search indexes: Google, Bing and DuckDuckGo organic results in a single paid call. Use it when a single index is not enough evidence for a grounded answer.",
      "useCases": [
        "Cross-index grounding before answering",
        "Detect index disagreement on a claim",
        "Broad citation gathering in one call"
      ],
      "resultsKey": "results",
      "tags": [
        "multi-engine",
        "grounding",
        "3 steps"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Search query sent to all three engines"
        },
        {
          "name": "gl",
          "type": "string",
          "required": false,
          "default": "us",
          "description": "Country code for results"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "Interface language code"
        },
        {
          "name": "num",
          "type": "integer",
          "required": false,
          "default": "10",
          "description": "Results per engine"
        }
      ],
      "responseSample": "{\n  \"intent\": \"serp-stack\",\n  \"chain\": [\n    \"google-search\",\n    \"bing-search\",\n    \"duckduckgo-search\"\n  ],\n  \"steps_run\": 3,\n  \"results\": {\n    \"google-search\": {\n      \"note\": \"Normalized response of /api/public/v1/google-search\"\n    },\n    \"bing-search\": {\n      \"note\": \"Normalized response of /api/public/v1/bing-search\"\n    },\n    \"duckduckgo-search\": {\n      \"note\": \"Normalized response of /api/public/v1/duckduckgo-search\"\n    }\n  }\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/serp-stack",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/serp-stack.md"
      }
    },
    {
      "slug": "news-brief",
      "title": "News Brief Intent",
      "category": "intents",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/news-brief",
      "agentSummary": "Give a topic, get Google News + Bing News articles in one response.",
      "description": "Recent coverage of a topic from two news indexes (Google News and Bing News) in one call, so a briefing agent is not anchored on a single publisher mix.",
      "useCases": [
        "Morning briefing generation",
        "Event coverage sweep",
        "Publisher-bias comparison"
      ],
      "resultsKey": "results",
      "tags": [
        "news",
        "2 steps",
        "monitoring"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "News topic or entity"
        },
        {
          "name": "gl",
          "type": "string",
          "required": false,
          "default": "us",
          "description": "Country code for results"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "Interface language code"
        }
      ],
      "responseSample": "{\n  \"intent\": \"news-brief\",\n  \"chain\": [\n    \"google-news\",\n    \"bing-news\"\n  ],\n  \"steps_run\": 2,\n  \"results\": {\n    \"google-news\": {\n      \"note\": \"Normalized response of /api/public/v1/google-news\"\n    },\n    \"bing-news\": {\n      \"note\": \"Normalized response of /api/public/v1/bing-news\"\n    }\n  }\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/news-brief",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/news-brief.md"
      }
    },
    {
      "slug": "brand-pulse",
      "title": "Brand Pulse Intent",
      "category": "intents",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/brand-pulse",
      "agentSummary": "Give a brand or ticker, get web results, news, and the finance quote together.",
      "description": "Web presence, news coverage and market quote for one brand or ticker in a single call: Google Search, Google News and Google Finance.",
      "useCases": [
        "Company due-diligence snapshot",
        "Pre-earnings context gathering",
        "Reputation monitoring"
      ],
      "resultsKey": "results",
      "tags": [
        "brand",
        "finance",
        "3 steps"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Brand name, company, or ticker query"
        },
        {
          "name": "ticker",
          "type": "string",
          "required": false,
          "description": "Finance symbol in EXCHANGE:SYMBOL form, e.g. NASDAQ:AAPL. Defaults to q."
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "Interface language code"
        }
      ],
      "responseSample": "{\n  \"intent\": \"brand-pulse\",\n  \"chain\": [\n    \"google-search\",\n    \"google-news\",\n    \"google-finance\"\n  ],\n  \"steps_run\": 3,\n  \"results\": {\n    \"google-search\": {\n      \"note\": \"Normalized response of /api/public/v1/google-search\"\n    },\n    \"google-news\": {\n      \"note\": \"Normalized response of /api/public/v1/google-news\"\n    },\n    \"google-finance\": {\n      \"note\": \"Normalized response of /api/public/v1/google-finance\"\n    }\n  }\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/brand-pulse",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/brand-pulse.md"
      }
    },
    {
      "slug": "deal-triage",
      "title": "Deal Triage Intent",
      "category": "intents",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/deal-triage",
      "agentSummary": "Give a product query (or ASIN), get shopping offers, the Amazon listing, and reviews.",
      "description": "Triage a purchase: Google Shopping offers, then the Amazon record (product detail when an ASIN is known or found, otherwise Amazon search), then Amazon reviews when an ASIN is resolvable.",
      "useCases": [
        "Pre-purchase check for a buying agent",
        "Offer vs marketplace price sanity check",
        "Fast quality screen before recommending"
      ],
      "resultsKey": "results",
      "tags": [
        "commerce",
        "2-3 steps",
        "purchase"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Product query"
        },
        {
          "name": "asin",
          "type": "string",
          "required": false,
          "description": "Amazon ASIN, when already known. Skips discovery."
        },
        {
          "name": "amazon_domain",
          "type": "string",
          "required": false,
          "default": "amazon.com",
          "description": "Amazon marketplace domain"
        }
      ],
      "responseSample": "{\n  \"intent\": \"deal-triage\",\n  \"chain\": [\n    \"google-shopping\",\n    \"amazon-product\",\n    \"amazon-reviews\"\n  ],\n  \"steps_run\": 3,\n  \"results\": {\n    \"google-shopping\": {\n      \"note\": \"Normalized response of /api/public/v1/google-shopping\"\n    },\n    \"amazon-product\": {\n      \"note\": \"Normalized response of /api/public/v1/amazon-product\"\n    },\n    \"amazon-reviews\": {\n      \"note\": \"Normalized response of /api/public/v1/amazon-reviews\"\n    }\n  }\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/deal-triage",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/deal-triage.md"
      }
    },
    {
      "slug": "cross-store-price",
      "title": "Cross-Store Price Intent",
      "category": "intents",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/cross-store-price",
      "agentSummary": "Give a product query, get offers from Google Shopping, Amazon, eBay and Walmart.",
      "description": "One product query priced across four retail surfaces in a single call: Google Shopping, Amazon, eBay and Walmart.",
      "useCases": [
        "Best-price selection for a purchasing agent",
        "Arbitrage scanning",
        "Retail price-spread analysis"
      ],
      "resultsKey": "results",
      "tags": [
        "commerce",
        "price comparison",
        "4 steps"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Product query sent to all four retail engines"
        },
        {
          "name": "gl",
          "type": "string",
          "required": false,
          "default": "us",
          "description": "Country code for results"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "Interface language code"
        }
      ],
      "responseSample": "{\n  \"intent\": \"cross-store-price\",\n  \"chain\": [\n    \"google-shopping\",\n    \"amazon-search\",\n    \"ebay-search\",\n    \"walmart-search\"\n  ],\n  \"steps_run\": 4,\n  \"results\": {\n    \"google-shopping\": {\n      \"note\": \"Normalized response of /api/public/v1/google-shopping\"\n    },\n    \"amazon-search\": {\n      \"note\": \"Normalized response of /api/public/v1/amazon-search\"\n    },\n    \"ebay-search\": {\n      \"note\": \"Normalized response of /api/public/v1/ebay-search\"\n    },\n    \"walmart-search\": {\n      \"note\": \"Normalized response of /api/public/v1/walmart-search\"\n    }\n  }\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/cross-store-price",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/cross-store-price.md"
      }
    },
    {
      "slug": "review-risk",
      "title": "Review Risk Intent",
      "category": "intents",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/review-risk",
      "agentSummary": "Give an ASIN, get the Amazon product record and its reviews together.",
      "description": "Product record plus customer reviews for one ASIN, so a recommending agent can weigh specs against complaint patterns before it commits.",
      "useCases": [
        "Quality gate before recommending a product",
        "Defect and complaint clustering",
        "Return-risk estimation"
      ],
      "resultsKey": "results",
      "tags": [
        "commerce",
        "reviews",
        "2 steps"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "asin",
          "type": "string",
          "required": true,
          "description": "Amazon ASIN"
        },
        {
          "name": "amazon_domain",
          "type": "string",
          "required": false,
          "default": "amazon.com",
          "description": "Amazon marketplace domain"
        },
        {
          "name": "sort_by",
          "type": "string",
          "required": false,
          "description": "Review sort: recent | helpful"
        }
      ],
      "responseSample": "{\n  \"intent\": \"review-risk\",\n  \"chain\": [\n    \"amazon-product\",\n    \"amazon-reviews\"\n  ],\n  \"steps_run\": 2,\n  \"results\": {\n    \"amazon-product\": {\n      \"note\": \"Normalized response of /api/public/v1/amazon-product\"\n    },\n    \"amazon-reviews\": {\n      \"note\": \"Normalized response of /api/public/v1/amazon-reviews\"\n    }\n  }\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/review-risk",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/review-risk.md"
      }
    },
    {
      "slug": "aso-dual",
      "title": "Dual App Store Intent",
      "category": "intents",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/aso-dual",
      "agentSummary": "Give an app query, get Google Play and Apple App Store results together.",
      "description": "The same app query run against Google Play and the Apple App Store, so an app-research agent sees both storefronts in one paid call.",
      "useCases": [
        "Cross-platform competitor research",
        "Verify an app ships on both stores",
        "App store optimization checks"
      ],
      "resultsKey": "results",
      "tags": [
        "app stores",
        "2 steps",
        "aso"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "App search query"
        },
        {
          "name": "country",
          "type": "string",
          "required": false,
          "default": "us",
          "description": "Apple storefront country code"
        },
        {
          "name": "gl",
          "type": "string",
          "required": false,
          "default": "us",
          "description": "Country code for results"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "Interface language code"
        }
      ],
      "responseSample": "{\n  \"intent\": \"aso-dual\",\n  \"chain\": [\n    \"google-play\",\n    \"apple-app-store\"\n  ],\n  \"steps_run\": 2,\n  \"results\": {\n    \"google-play\": {\n      \"note\": \"Normalized response of /api/public/v1/google-play\"\n    },\n    \"apple-app-store\": {\n      \"note\": \"Normalized response of /api/public/v1/apple-app-store\"\n    }\n  }\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/aso-dual",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/aso-dual.md"
      }
    },
    {
      "slug": "place-dossier",
      "title": "Place Dossier Intent",
      "category": "intents",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/place-dossier",
      "agentSummary": "Give a place query, get the matching business record plus its reviews.",
      "description": "Resolve a business or place from a query, then pull its Google Maps reviews — the place lookup and review fetch chained server-side.",
      "useCases": [
        "Vendor vetting for a local-services agent",
        "Sentiment summary for one location",
        "Contact + reputation dossier"
      ],
      "resultsKey": "results",
      "tags": [
        "places",
        "reviews",
        "2 steps"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Place or business query, e.g. coffee in Austin"
        },
        {
          "name": "place_id",
          "type": "string",
          "required": false,
          "description": "Skip discovery by supplying a known Google place ID"
        },
        {
          "name": "sort_by",
          "type": "string",
          "required": false,
          "description": "relevance | newest | highest_rating | lowest_rating"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "Interface language code"
        }
      ],
      "responseSample": "{\n  \"intent\": \"place-dossier\",\n  \"chain\": [\n    \"google-maps\",\n    \"google-maps-reviews\"\n  ],\n  \"steps_run\": 2,\n  \"results\": {\n    \"google-maps\": {\n      \"note\": \"Normalized response of /api/public/v1/google-maps\"\n    },\n    \"google-maps-reviews\": {\n      \"note\": \"Normalized response of /api/public/v1/google-maps-reviews\"\n    }\n  }\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/place-dossier",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/place-dossier.md"
      }
    },
    {
      "slug": "trip-skeleton",
      "title": "Trip Skeleton Intent",
      "category": "intents",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/trip-skeleton",
      "agentSummary": "Give route and dates, get flights and hotels (and events when location is set).",
      "description": "The bones of a trip in one call: priced flight itineraries and hotel options for the same dates, plus local events when a location is supplied.",
      "useCases": [
        "Draft an itinerary before human approval",
        "Travel budget estimation",
        "Compare trip windows"
      ],
      "resultsKey": "results",
      "tags": [
        "travel",
        "2-3 steps",
        "itinerary"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "departure_id",
          "type": "string",
          "required": true,
          "description": "Origin airport or city code, e.g. ORD"
        },
        {
          "name": "arrival_id",
          "type": "string",
          "required": true,
          "description": "Destination airport or city code, e.g. LAX"
        },
        {
          "name": "outbound_date",
          "type": "date",
          "required": true,
          "description": "YYYY-MM-DD"
        },
        {
          "name": "return_date",
          "type": "date",
          "required": false,
          "description": "YYYY-MM-DD for round trips. Omit for one-way."
        },
        {
          "name": "destination",
          "type": "string",
          "required": false,
          "description": "Hotel search destination. Defaults to arrival_id."
        },
        {
          "name": "check_in_date",
          "type": "date",
          "required": false,
          "description": "Hotel check-in. Defaults to outbound_date."
        },
        {
          "name": "check_out_date",
          "type": "date",
          "required": false,
          "description": "Hotel check-out. Defaults to return_date or outbound_date."
        },
        {
          "name": "location",
          "type": "string",
          "required": false,
          "description": "When set, adds a Google Events step for that location."
        },
        {
          "name": "currency",
          "type": "string",
          "required": false,
          "default": "USD",
          "description": "Currency code"
        }
      ],
      "responseSample": "{\n  \"intent\": \"trip-skeleton\",\n  \"chain\": [\n    \"google-flights\",\n    \"google-hotels\",\n    \"google-events\"\n  ],\n  \"steps_run\": 3,\n  \"results\": {\n    \"google-flights\": {\n      \"note\": \"Normalized response of /api/public/v1/google-flights\"\n    },\n    \"google-hotels\": {\n      \"note\": \"Normalized response of /api/public/v1/google-hotels\"\n    },\n    \"google-events\": {\n      \"note\": \"Normalized response of /api/public/v1/google-events\"\n    }\n  }\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/trip-skeleton",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/trip-skeleton.md"
      }
    },
    {
      "slug": "video-digest",
      "title": "Video Digest Intent",
      "category": "intents",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/video-digest",
      "agentSummary": "Give a topic (or video_id), get the top video's metadata and full transcript.",
      "description": "Search YouTube for a topic, take the top video, pull its metadata, and return the full timestamped transcript — a research pipeline in one paid call.",
      "useCases": [
        "Summarize the best video on a topic",
        "Cite a video with timestamps",
        "Feed long-form video into RAG"
      ],
      "resultsKey": "results",
      "tags": [
        "video",
        "transcript",
        "3 steps"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": false,
          "description": "Topic to search on YouTube. Required unless video_id is supplied."
        },
        {
          "name": "video_id",
          "type": "string",
          "required": false,
          "description": "Skip search by supplying a YouTube video ID or watch URL"
        },
        {
          "name": "lang",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "Transcript language code"
        }
      ],
      "responseSample": "{\n  \"intent\": \"video-digest\",\n  \"chain\": [\n    \"youtube-search\",\n    \"youtube-video\",\n    \"youtube-transcripts\"\n  ],\n  \"steps_run\": 3,\n  \"results\": {\n    \"youtube-search\": {\n      \"note\": \"Normalized response of /api/public/v1/youtube-search\"\n    },\n    \"youtube-video\": {\n      \"note\": \"Normalized response of /api/public/v1/youtube-video\"\n    },\n    \"youtube-transcripts\": {\n      \"note\": \"Normalized response of /api/public/v1/youtube-transcripts\"\n    }\n  }\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/video-digest",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/video-digest.md"
      }
    },
    {
      "slug": "trend-then-serp",
      "title": "Trend Then SERP Intent",
      "category": "intents",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/trend-then-serp",
      "agentSummary": "Give a keyword, get its trend series and the current Google results.",
      "description": "Momentum first, evidence second: Google Trends interest for a keyword plus the live Google SERP for the same term in one call.",
      "useCases": [
        "Decide whether a topic is rising before writing",
        "Keyword prioritization",
        "Campaign timing checks"
      ],
      "resultsKey": "results",
      "tags": [
        "trends",
        "search",
        "2 steps"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Keyword to measure and search"
        },
        {
          "name": "geo",
          "type": "string",
          "required": false,
          "description": "Trends country code, e.g. US"
        },
        {
          "name": "date",
          "type": "string",
          "required": false,
          "description": "Trends time range, e.g. today 12-m"
        },
        {
          "name": "gl",
          "type": "string",
          "required": false,
          "default": "us",
          "description": "Country code for results"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "Interface language code"
        }
      ],
      "responseSample": "{\n  \"intent\": \"trend-then-serp\",\n  \"chain\": [\n    \"google-trends\",\n    \"google-search\"\n  ],\n  \"steps_run\": 2,\n  \"results\": {\n    \"google-trends\": {\n      \"note\": \"Normalized response of /api/public/v1/google-trends\"\n    },\n    \"google-search\": {\n      \"note\": \"Normalized response of /api/public/v1/google-search\"\n    }\n  }\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/trend-then-serp",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/trend-then-serp.md"
      }
    },
    {
      "slug": "image-provenance",
      "title": "Image Provenance Intent",
      "category": "intents",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/image-provenance",
      "agentSummary": "Give an image URL, get visual matches and pages hosting the exact image.",
      "description": "Two reverse-image passes on one image URL: Google Lens visual matches and Google exact matches, so a verification agent sees both similarity and provenance.",
      "useCases": [
        "Misinformation and provenance checks",
        "Copyright and reuse tracing",
        "Identify a product from a photo"
      ],
      "resultsKey": "results",
      "tags": [
        "images",
        "provenance",
        "2 steps"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "image_url",
          "type": "string",
          "required": true,
          "description": "Publicly reachable image URL"
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "Interface language code"
        }
      ],
      "responseSample": "{\n  \"intent\": \"image-provenance\",\n  \"chain\": [\n    \"google-lens\",\n    \"google-reverse-image\"\n  ],\n  \"steps_run\": 2,\n  \"results\": {\n    \"google-lens\": {\n      \"note\": \"Normalized response of /api/public/v1/google-lens\"\n    },\n    \"google-reverse-image\": {\n      \"note\": \"Normalized response of /api/public/v1/google-reverse-image\"\n    }\n  }\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/image-provenance",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/image-provenance.md"
      }
    },
    {
      "slug": "scholar-pack",
      "title": "Scholar Pack Intent",
      "category": "intents",
      "method": "GET",
      "url": "https://marketplaceforaiagents.com/api/public/v1/scholar-pack",
      "agentSummary": "Give a research query (and optionally an author_id), get papers and that author's record.",
      "description": "Academic search for a topic, plus the full publication record of a named author when author_id is supplied.",
      "useCases": [
        "Literature review automation",
        "Assess an expert's credibility",
        "Find primary sources for a claim"
      ],
      "resultsKey": "results",
      "tags": [
        "academic",
        "1-2 steps",
        "citations"
      ],
      "status": "live",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Research query"
        },
        {
          "name": "author_id",
          "type": "string",
          "required": false,
          "description": "Google Scholar author ID. When set, adds the author step."
        },
        {
          "name": "hl",
          "type": "string",
          "required": false,
          "default": "en",
          "description": "Interface language code"
        }
      ],
      "responseSample": "{\n  \"intent\": \"scholar-pack\",\n  \"chain\": [\n    \"google-scholar\",\n    \"google-scholar-author\"\n  ],\n  \"steps_run\": 2,\n  \"results\": {\n    \"google-scholar\": {\n      \"note\": \"Normalized response of /api/public/v1/google-scholar\"\n    },\n    \"google-scholar-author\": {\n      \"note\": \"Normalized response of /api/public/v1/google-scholar-author\"\n    }\n  }\n}",
      "docs": {
        "html": "https://marketplaceforaiagents.com/listings/scholar-pack",
        "markdown": "https://marketplaceforaiagents.com/agent/listings/scholar-pack.md"
      }
    }
  ]
}