Validere TypeMetadata API

The TypeMetadata API from Validere — 4 operation(s) for typemetadata.

Operations 4

GET /type_metadata/transaction_states List All Transaction States #
GET /type_metadata/transaction_statuses List All Transaction Statuses #
GET /type_metadata/transaction_steps List All Transaction Steps #
GET /type_metadata/transaction_errors List All Transaction Errors #

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/validere-typemetadata-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

validere-typemetadata-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Activity Log
  title: CarbonHub activities Type Metadata API
  version: 1.0.0
servers:
- url: https://api.validere.io
security:
- Staging: []
- Integration: []
- Local: []
tags:
- name: TypeMetadata
paths:
  /type_metadata/transaction_states:
    get:
      tags:
      - TypeMetadata
      summary: List All Transaction States
      description: Lists all transaction states.
      operationId: list_all_transaction_states_type_metadata_transaction_states_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TypeMetadataResponse'
              example:
                meta:
                  type: TypeMetadata
                  total: 1
                data:
                - id: string
      security:
      - HTTPBearer: []
      - APIKeyHeader: []
  /type_metadata/transaction_statuses:
    get:
      tags:
      - TypeMetadata
      summary: List All Transaction Statuses
      description: Lists all transaction statuses.
      operationId: list_all_transaction_statuses_type_metadata_transaction_statuses_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TypeMetadataResponse'
              example:
                meta:
                  type: TypeMetadata
                  total: 1
                data:
                - id: string
      security:
      - HTTPBearer: []
      - APIKeyHeader: []
  /type_metadata/transaction_steps:
    get:
      tags:
      - TypeMetadata
      summary: List All Transaction Steps
      description: Lists all transaction steps.
      operationId: list_all_transaction_steps_type_metadata_transaction_steps_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TypeMetadataResponse'
              example:
                meta:
                  type: TypeMetadata
                  total: 1
                data:
                - id: string
      security:
      - HTTPBearer: []
      - APIKeyHeader: []
  /type_metadata/transaction_errors:
    get:
      tags:
      - TypeMetadata
      summary: List All Transaction Errors
      description: Lists all transaction errors.
      operationId: list_all_transaction_errors_type_metadata_transaction_errors_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TypeMetadataResponse'
              example:
                meta:
                  type: TypeMetadata
                  total: 1
                data:
                - id: string
      security:
      - HTTPBearer: []
      - APIKeyHeader: []
components:
  schemas:
    ResponseMeta:
      properties:
        type:
          type: string
          title: Type
        transaction_id:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Transaction Id
        info:
          anyOf:
          - type: string
          - type: 'null'
          title: Info
        total:
          anyOf:
          - type: integer
          - type: 'null'
          title: Total
      type: object
      required:
      - type
      title: ResponseMeta
      description: Standard response envelope meta object
    TypeMetadataResponse:
      properties:
        meta:
          $ref: '#/components/schemas/ResponseMeta'
        data:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Data
      type: object
      required:
      - meta
      - data
      title: TypeMetadataResponse
      description: TypeMetadata response envelope