Parade Digital Conversion API

The Digital Conversion API from Parade — 1 operation(s) for digital conversion.

Operations 1

POST /your-digital-conversion-notification-webhook Quote and booking conversion notifications #

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/parade-digital-conversion-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

parade-digital-conversion-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Parade Syndication Webhooks Digital Conversion API
  description: 'Webhooks set up on the partner side to receive notifications from Parade.


    Please contact us to set up URLs.

    '
  contact:
    email: eng@parade.ai
    name: Parade Eng Team
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
  version: 1.1.0
servers:
- url: https://your-url
security: []
tags:
- name: Digital Conversion
paths:
  /your-digital-conversion-notification-webhook:
    post:
      operationId: digital_conversion_webhook
      tags:
      - Digital Conversion
      summary: Quote and booking conversion notifications
      description: Set this up if you want to receive quote and booking conversion notifications at a webhook on your end.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DigitalConversionNotification'
      responses:
        '201':
          description: notification received
        '400':
          description: ''
components:
  schemas:
    DigitalConversionNotification:
      type: object
      required:
      - update_type
      - posting_id
      - company_external_key
      - company_name
      - dot_number
      properties:
        update_type:
          type: string
          enum:
          - C
          - R
          description: Update of C for confirmed, or R for rejected
        posting_id:
          type: integer
          description: Unique ID of the posting
        load_reference_id:
          type: string
          example: A123123
          description: Reference ID of the load
        company_external_key:
          type: string
          description: Unique key related to the broker
        company_name:
          type: string
          description: Name of the broker
        dot_number:
          type: string
          description: DOT number of the carrier
        mc_number:
          type: string
          description: MC number of the carrier
        all_in_rate:
          type: number
          description: 'Total booked rate in USD, will only appear if the quote or booking was confirmed.


            May be different from the initial quote/booking rate.

            '