CrossEngage Destination API

The Destination API from CrossEngage — 2 operation(s) for destination.

Operations 2

GET /destination Get all destinations and their details #
GET /destination/{id} Get a certain destination and its details #

Documentation

Specifications

Other Resources

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/crossenagage-destination-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

crossenagage-destination-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Raw Export Destination API
  version: ''
  description: This asynchronous API enables export of user & event data from CrossEngage.
servers:
- url: https://api.crossengage.io/
tags:
- name: Destination
paths:
  /destination:
    get:
      responses:
        '200':
          description: OK
          headers: {}
          content:
            application/json:
              schema:
                type: array
                items: {}
              example:
              - id: b393489f-7d76-41c2-bb2f-f965ab997d2e
                name: My destination name
                type: EXPORT
                destination: https://api-stg.xng.rocks/events
                createdAt: '2019-08-21T12:10:47Z'
                updatedAt: '2019-08-21T12:11:47Z'
      summary: Get all destinations and their details
      operationId: Get all destinations and their details
      description: ''
      tags:
      - Destination
      parameters:
      - name: type
        in: query
        description: _Optional_. Type of destination that should be returned. When not provided all destinations will be returned.
        required: false
        schema:
          type: string
          enum:
          - EXPORT
          - CALLBACK
      - name: X-XNG-ApiVersion
        in: header
        description: e.g. 2
        required: false
        x-example: '2'
        schema:
          type: string
      - name: X-XNG-AuthToken
        in: header
        description: e.g. YourAPIKey
        required: false
        x-example: YourAPIKey
        schema:
          type: string
  /destination/{id}:
    get:
      responses:
        '200':
          description: OK
          headers: {}
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    enum:
                    - b393489f-7d76-41c2-bb2f-f965ab997d2e
                    description: ID of a destination.
                  name:
                    type: string
                    description: Name of a destination.
                  type:
                    type: string
                    enum:
                    - EXPORT
                    - CALLBACK
                    description: Type of a destination.
                  destination:
                    type: string
                    description: Destination url or folder.
                  createdAt:
                    type: string
                    description: ISO 8601 formatted string representing creation date of a destination.
                  updatedAt:
                    type: string
                    description: ISO 8601 formatted string representing last modification date of destination settings.
                required:
                - id
                - type
              example:
                id: b393489f-7d76-41c2-bb2f-f965ab997d2e
                name: My destination name
                type: EXPORT
                destination: https://api-stg.xng.rocks/events
                createdAt: '2019-08-21T12:10:47Z'
                updatedAt: '2019-08-21T12:11:47Z'
      summary: Get a certain destination and its details
      operationId: Get a certain destination and its details
      description: ''
      tags:
      - Destination
      parameters:
      - name: id
        in: path
        description: _Required_. ID of a destination to be returned.
        required: true
        schema:
          type: string
      - name: X-XNG-ApiVersion
        in: header
        description: e.g. 2
        required: false
        x-example: '2'
        schema:
          type: string
      - name: X-XNG-AuthToken
        in: header
        description: e.g. YourAPIKey
        required: false
        x-example: YourAPIKey
        schema:
          type: string