Payload Collections API

The Collections API from Payload — 3 operation(s) for collections.

Operations 8

GET /api/{collection} Find documents in collection #
POST /api/{collection} Create a document #
PATCH /api/{collection} Bulk update documents matching a query #
DELETE /api/{collection} Bulk delete documents matching a query #
GET /api/{collection}/{id} Find document by id #
PATCH /api/{collection}/{id} Update document by id #
DELETE /api/{collection}/{id} Delete document by id #
GET /api/{collection}/count Count documents matching a query #

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/payload-collections-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

payload-collections-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Payload CMS REST Collections API
  description: Payload is a TypeScript-first headless CMS and application framework that auto-generates REST and GraphQL APIs from collection schemas. The REST API exposes collections at /api/{collection-slug}, globals at /api/globals/{global-slug}, auth operations at /api/{user-collection}/login etc., and user preferences at /api/payload-preferences/{key}. Authentication uses JWT tokens issued by the login endpoint.
  version: '3.0'
  contact:
    name: Payload
    url: https://payloadcms.com/docs
servers:
- url: https://example.com
  description: Self-hosted Payload instance (replace with your deployment).
security:
- bearerAuth: []
tags:
- name: Collections
paths:
  /api/{collection}:
    parameters:
    - name: collection
      in: path
      required: true
      schema:
        type: string
      description: Collection slug.
    get:
      tags:
      - Collections
      summary: Find documents in collection
      operationId: findCollection
      responses:
        '200':
          description: A paginated list of documents.
    post:
      tags:
      - Collections
      summary: Create a document
      operationId: createDocument
      responses:
        '201':
          description: Document created.
    patch:
      tags:
      - Collections
      summary: Bulk update documents matching a query
      operationId: bulkUpdateDocuments
      responses:
        '200':
          description: Documents updated.
    delete:
      tags:
      - Collections
      summary: Bulk delete documents matching a query
      operationId: bulkDeleteDocuments
      responses:
        '200':
          description: Documents deleted.
  /api/{collection}/{id}:
    parameters:
    - name: collection
      in: path
      required: true
      schema:
        type: string
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Collections
      summary: Find document by id
      operationId: findDocumentById
      responses:
        '200':
          description: Document details.
    patch:
      tags:
      - Collections
      summary: Update document by id
      operationId: updateDocumentById
      responses:
        '200':
          description: Document updated.
    delete:
      tags:
      - Collections
      summary: Delete document by id
      operationId: deleteDocumentById
      responses:
        '200':
          description: Document deleted.
  /api/{collection}/count:
    parameters:
    - name: collection
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Collections
      summary: Count documents matching a query
      operationId: countDocuments
      responses:
        '200':
          description: Count of matching documents.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'JWT issued by the login endpoint. Send as `Authorization: JWT <token>` or via cookie.'