Payem Search API

The Search API from Payem — 1 operation(s) for search.

Operations 1

GET /search Semantic search across indexed business content #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/payem-search-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

payem-search-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Payem AI Discovery Search API
  description: Comprehensive AI-optimized API for Payem. Access products, services, FAQs, and business intelligence through structured endpoints with Schema.org markup.
  version: v2.2.4
  summary: AI-optimized API for discovering Payem products and services
  license:
    name: CC-BY-4.0
    identifier: CC-BY-4.0
    url: https://creativecommons.org/licenses/by/4.0/
  contact:
    name: Payem
    email: contact@payem.co
    url: https://payem.co
servers:
- url: https://api.llm-discovery-api.com/functions/v1/llm-discovery/public
  description: AI Discovery API Server (October 2025)
  variables:
    domain:
      default: payem.co
      description: Client domain for API requests
tags:
- name: Search
paths:
  /search:
    get:
      summary: Semantic search across indexed business content
      description: Search through curated Q&As, business information, and product data using natural language queries. Returns AI-optimized results with Schema.org markup.
      operationId: searchIndexedContent
      tags:
      - Search
      parameters:
      - name: domain
        in: query
        required: true
        schema:
          type: string
        description: Business domain to search
        example: vcita.com
      - name: query
        in: query
        required: true
        schema:
          type: string
        description: Natural language search query
        example: scheduling software features
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          default: 10
          minimum: 1
          maximum: 50
        description: Maximum number of results to return
      responses:
        '200':
          description: Search results with semantic relevance scoring
          content:
            text/html:
              schema:
                type: string
                description: HTML page with embedded JSON-LD Schema.org markup containing search results
            application/json:
              schema:
                type: object
                properties:
                  query:
                    type: string
                    description: Original search query
                  resultsCount:
                    type: integer
                    description: Number of results found
                  results:
                    type: array
                    description: Ranked search results
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          description: Result title
                        type:
                          type: string
                          enum:
                          - qa
                          - business_info
                          - product
                          - testimonial
                          description: Type of content
                        relevance_score:
                          type: number
                          description: Semantic relevance score (0-100)
                        description:
                          type: string
                          description: Content snippet or summary
                        url:
                          type: string
                          format: uri
                          description: URL to full content (if available)
                  search_context:
                    type: object
                    description: Additional context about the search
                    properties:
                      business_name:
                        type: string
                      total_indexed_content:
                        type: integer
        '400':
          description: Missing required query parameter
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  usage:
                    type: string
x-perplexity-optimized: true
x-claude-compatible: true
x-openai-compatible: true
x-google-sge: true
x-ai-discovery:
  version: 3.0.0
  features:
  - structured_data
  - json_ld
  - schema_org
  - sge_optimized
  last_updated: '2026-08-26'