Mercoa Entity Groups API

The Entity Groups API from Mercoa — 5 operation(s) for entity groups.

Operations 7

GET /entityGroups List entity groups
POST /entityGroup Create entity group
GET /entityGroup/{entityGroupId} Get entity group
POST /entityGroup/{entityGroupId} Update entity group
DELETE /entityGroup/{entityGroupId} Delete entity group
POST /entityGroup/{entityGroupId}/token Generate entity group token
POST /entityGroup/{entityGroupId}/addEntities Add entities to group

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/mercoa-entity-groups-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

mercoa-entity-groups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Mercoa Entities Entity Groups API
  description: 'The Mercoa REST API powers embedded accounts payable and accounts receivable

    workflows inside vertical SaaS platforms. This spec is a curated subset of

    the canonical Mercoa OpenAPI document

    (https://github.com/mercoa-finance/openapi). All requests authenticate with

    a Bearer token (API key or JWT) in the Authorization header.

    '
  version: '1.0'
  contact:
    name: Mercoa
    url: https://docs.mercoa.com/
servers:
- url: https://api.mercoa.com
  description: Production
security:
- bearerAuth: []
tags:
- name: Entity Groups
paths:
  /entityGroups:
    get:
      tags:
      - Entity Groups
      summary: List entity groups
      responses:
        '200':
          description: Paginated entity groups
  /entityGroup:
    post:
      tags:
      - Entity Groups
      summary: Create entity group
      responses:
        '201':
          description: Created
  /entityGroup/{entityGroupId}:
    parameters:
    - $ref: '#/components/parameters/EntityGroupId'
    get:
      tags:
      - Entity Groups
      summary: Get entity group
      responses:
        '200':
          description: Entity group
    post:
      tags:
      - Entity Groups
      summary: Update entity group
      responses:
        '200':
          description: Updated
    delete:
      tags:
      - Entity Groups
      summary: Delete entity group
      responses:
        '204':
          description: Deleted
  /entityGroup/{entityGroupId}/token:
    parameters:
    - $ref: '#/components/parameters/EntityGroupId'
    post:
      tags:
      - Entity Groups
      summary: Generate entity group token
      responses:
        '201':
          description: Token
  /entityGroup/{entityGroupId}/addEntities:
    parameters:
    - $ref: '#/components/parameters/EntityGroupId'
    post:
      tags:
      - Entity Groups
      summary: Add entities to group
      responses:
        '200':
          description: Updated group
components:
  parameters:
    EntityGroupId:
      name: entityGroupId
      in: path
      required: true
      schema:
        type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: token
      description: 'Mercoa API key or JWT. Send as "Authorization: Bearer {token}". API keys

        are issued from the Mercoa Dashboard and are backend-only. JWTs scope

        access to an entity or entity group.

        '