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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/cometeer-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
title: Cometeer Storefront (read-only agent surface) Search API
version: '2026-08-01'
summary: Public, unauthenticated JSON endpoints of the Cometeer online store.
description: 'Cometeer publishes a read-only browsing surface for agents in its own
`/llms.txt` under the heading "Read-Only Browsing (No Authentication
Required)". This document is a faithful OpenAPI rendering of exactly the
endpoints Cometeer names there, with schemas derived from live observed
responses on 2026-08-01. It is NOT a Cometeer-authored specification, and
it is NOT the transactional surface — carts, checkouts and orders are only
reachable through the UCP MCP endpoint catalogued in
`mcp/cometeer-mcp.yml`.
Provenance: generated from https://cometeer.com/llms.txt; every path below
was probed and returned HTTP 200. No endpoint has been invented.
'
contact:
name: Cometeer Support
url: https://help.cometeer.com/
license:
name: Terms of Service
url: https://cometeer.com/policies/terms-of-service
x-provenance:
generated: '2026-08-01'
method: generated
source: https://cometeer.com/llms.txt
authored_by: API Evangelist enrichment pipeline
platform: Shopify
servers:
- url: https://cometeer.com
description: Cometeer production storefront
tags:
- name: Search
description: Storefront search
paths:
/search:
get:
operationId: searchProducts
tags:
- Search
summary: Search the storefront
description: Documented in Cometeer's /llms.txt as "Search". Returns an HTML results page; there is no JSON representation of this endpoint on the storefront. Agents needing structured search should use the UCP MCP `search_catalog` tool instead (see mcp/cometeer-mcp.yml).
parameters:
- name: q
in: query
required: true
description: The search query.
schema:
type: string
- name: type
in: query
required: false
description: Restrict results to a resource type.
schema:
type: string
enum:
- product
- article
- page
responses:
'200':
description: HTML search results page.
content:
text/html:
schema:
type: string
'429':
$ref: '#/components/responses/TooManyRequests'
components:
responses:
TooManyRequests:
description: Rate limited. Cometeer's /llms.txt instructs agents to back off on 429 responses.
content:
text/html:
schema:
type: string