Configure8 Catalog Entities API

The Catalog Entities API from Configure8 — 7 operation(s) for catalog entities.

Operations 9

POST /catalog/entities Get catalog entities filtered by query #
GET /catalog/entities/{id} Get a catalog entity by ID #
PATCH /catalog/entities/{id} Update a catalog entity #
DELETE /catalog/entities/{id} Delete a catalog entity #
POST /catalog/entities/service Create a service entity #
POST /catalog/entities/resource Create a resource entity #
POST /catalog/entities/person Create a person entity #
POST /catalog/entities/system Create a system entity #
POST /catalog/entities/environment Create an environment entity #

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/configure8-catalog-entities-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

configure8-catalog-entities-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Configure8 Public REST Catalog Entities API
  version: v1
  description: Best-effort OpenAPI 3.1 description of the Configure8 public REST API, derived from the published API reference at https://docs.configure8.io/ and https://configure8.readme.io/reference. Covers catalog entities, catalog relations, scorecards, users, and related Internal Developer Portal operations. Endpoint paths and request shapes follow Configure8's documented `/public/v1` surface.
  contact:
    name: Configure8 Documentation
    url: https://docs.configure8.io/
servers:
- url: https://{tenant}.configure8.io/public/v1
  description: Configure8 SaaS tenant
  variables:
    tenant:
      default: app
      description: Configure8 tenant subdomain
security:
- apiKey: []
tags:
- name: Catalog Entities
paths:
  /catalog/entities:
    post:
      tags:
      - Catalog Entities
      summary: Get catalog entities filtered by query
      operationId: queryCatalogEntities
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EntityQuery'
      responses:
        '200':
          description: Filtered list of catalog entities
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EntityList'
  /catalog/entities/{id}:
    parameters:
    - $ref: '#/components/parameters/EntityId'
    get:
      tags:
      - Catalog Entities
      summary: Get a catalog entity by ID
      operationId: getCatalogEntity
      responses:
        '200':
          description: Catalog entity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Entity'
    patch:
      tags:
      - Catalog Entities
      summary: Update a catalog entity
      operationId: updateCatalogEntity
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Entity'
      responses:
        '200':
          description: Updated entity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Entity'
    delete:
      tags:
      - Catalog Entities
      summary: Delete a catalog entity
      operationId: deleteCatalogEntity
      responses:
        '204':
          description: Deleted
  /catalog/entities/service:
    post:
      tags:
      - Catalog Entities
      summary: Create a service entity
      operationId: createServiceEntity
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Entity'
      responses:
        '201':
          description: Service entity created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Entity'
  /catalog/entities/resource:
    post:
      tags:
      - Catalog Entities
      summary: Create a resource entity
      operationId: createResourceEntity
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Entity'
      responses:
        '201':
          description: Resource entity created
  /catalog/entities/person:
    post:
      tags:
      - Catalog Entities
      summary: Create a person entity
      operationId: createPersonEntity
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Entity'
      responses:
        '201':
          description: Person entity created
  /catalog/entities/system:
    post:
      tags:
      - Catalog Entities
      summary: Create a system entity
      operationId: createSystemEntity
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Entity'
      responses:
        '201':
          description: System entity created
  /catalog/entities/environment:
    post:
      tags:
      - Catalog Entities
      summary: Create an environment entity
      operationId: createEnvironmentEntity
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Entity'
      responses:
        '201':
          description: Environment entity created
components:
  parameters:
    EntityId:
      name: id
      in: path
      required: true
      schema:
        type: string
  schemas:
    EntityQuery:
      type: object
      properties:
        kind:
          type: string
        owner:
          type: string
        tag:
          type: string
        search:
          type: string
        limit:
          type: integer
        offset:
          type: integer
    EntityList:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/Entity'
        total:
          type: integer
    Entity:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        slug:
          type: string
        kind:
          type: string
          enum:
          - service
          - resource
          - person
          - library
          - repository
          - environment
          - system
          - application
          - manifest
          - base
        description:
          type: string
        owner:
          type: string
        tags:
          type: array
          items:
            type: string
        metadata:
          type: object
          additionalProperties: true
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization
      description: Bearer/API token issued from the Configure8 UI; passed in the Authorization header