Ontraport Metadata API

Object metadata and field information.

Operations 3

GET /objects/meta Retrieve object field metadata
GET /objects/getInfo Retrieve collection info
POST /objects/fieldeditor Create custom fields and sections

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/ontraport-metadata-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

ontraport-metadata-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Ontraport REST Metadata API
  description: 'Ontraport''s REST API exposes CRUD access to contacts, transactions, tags,

    sequences, forms, landing pages, and ecommerce objects. Authentication uses

    `Api-Key` and `Api-Appid` HTTP headers. All endpoints share a generic object

    interface where the object type is specified via parameters.

    '
  version: 1.0.0
  contact:
    name: Ontraport Developer Documentation
    url: https://api.ontraport.com/doc/
servers:
- url: https://api.ontraport.com/1
  description: Ontraport REST API v1
security:
- ApiKeyAuth: []
  AppIdAuth: []
tags:
- name: Metadata
  description: Object metadata and field information.
paths:
  /objects/meta:
    get:
      tags:
      - Metadata
      summary: Retrieve object field metadata
      parameters:
      - $ref: '#/components/parameters/ObjectTypeId'
      responses:
        '200':
          $ref: '#/components/responses/SimpleResponse'
  /objects/getInfo:
    get:
      tags:
      - Metadata
      summary: Retrieve collection info
      description: Returns collection information such as object counts.
      parameters:
      - $ref: '#/components/parameters/ObjectTypeId'
      responses:
        '200':
          $ref: '#/components/responses/SimpleResponse'
  /objects/fieldeditor:
    post:
      tags:
      - Metadata
      summary: Create custom fields and sections
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              additionalProperties: true
      responses:
        '200':
          $ref: '#/components/responses/SimpleResponse'
components:
  responses:
    SimpleResponse:
      description: Generic response
      content:
        application/json:
          schema:
            type: object
            additionalProperties: true
  parameters:
    ObjectTypeId:
      name: objectID
      in: query
      required: true
      description: Numeric Ontraport object type ID (e.g. 0 = Contacts).
      schema:
        type: integer
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Api-Key
    AppIdAuth:
      type: apiKey
      in: header
      name: Api-Appid