> ## Documentation Index
> Fetch the complete documentation index at: https://docs.paxos.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Execution Data (Market)

> Execution data feed for a specific market



## AsyncAPI

````yaml api-reference/websocket-asyncapi.json /executiondata/{market}
id: /executiondata/{market}
title: /executiondata/{market}
description: Execution data feed for a specific market
servers:
  - id: production
    protocol: wss
    host: ws.paxos.com
    bindings: []
    variables: []
  - id: sandbox
    protocol: wss
    host: ws.sandbox.paxos.com
    bindings: []
    variables: []
address: /executiondata/{market}
parameters:
  - id: market
    jsonSchema:
      type: string
      description: >-
        Filter the data stream for a single market. For example, BTCUSD or
        USDCUSD for stablecoin feeds.
    description: >-
      Filter the data stream for a single market. For example, BTCUSD or USDCUSD
      for stablecoin feeds.
    type: string
    required: true
    deprecated: false
bindings: []
operations:
  - &ref_0
    id: /executiondata/{market}.subscribe
    title: /executiondata/{market}.subscribe
    description: Subscribe to execution data for a specific market
    type: send
    messages:
      - &ref_1
        id: subscribe.message
        payload:
          - name: Execution Data
            description: Market execution data
            type: object
            properties:
              - name: market
                type: string
                description: One of the available markets (e.g., BTCUSD)
                required: true
              - name: price
                type: string
                description: The execution price
                required: true
              - name: amount
                type: string
                description: The execution amount
                required: true
              - name: executed_at
                type: string
                description: Timestamp of the execution
                required: true
              - name: match_number
                type: string
                description: Unique execution number (idempotent field)
                required: true
        headers: []
        jsonPayloadSchema:
          type: object
          required:
            - market
            - price
            - amount
            - executed_at
            - match_number
          properties:
            market:
              type: string
              description: One of the available markets (e.g., BTCUSD)
              example: BTCUSD
              x-parser-schema-id: <anonymous-schema-1>
            price:
              type: string
              description: The execution price
              example: '24228.75'
              x-parser-schema-id: <anonymous-schema-2>
            amount:
              type: string
              description: The execution amount
              example: '0.00000412'
              x-parser-schema-id: <anonymous-schema-3>
            executed_at:
              type: string
              format: date-time
              description: Timestamp of the execution
              example: '2023-03-13T18:46:53.386Z'
              x-parser-schema-id: <anonymous-schema-4>
            match_number:
              type: string
              description: Unique execution number (idempotent field)
              example: 6AJVAX7BTCH8
              x-parser-schema-id: <anonymous-schema-5>
          x-parser-schema-id: ExecutionDataPayload
        title: Execution Data
        description: Market execution data
        example: |-
          {
            "market": "BTCUSD",
            "price": "24228.75",
            "amount": "0.00000412",
            "executed_at": "2023-03-13T18:46:53.386Z",
            "match_number": "6AJVAX7BTCH8"
          }
        bindings: []
        extensions:
          - id: x-parser-unique-object-id
            value: subscribe.message
    bindings: []
    extensions:
      - id: x-parser-unique-object-id
        value: /executiondata/{market}
sendOperations: []
receiveOperations:
  - *ref_0
sendMessages: []
receiveMessages:
  - *ref_1
extensions:
  - id: x-parser-unique-object-id
    value: /executiondata/{market}
securitySchemes: []

````