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

# Debug Trade Logs (Jito)

> Get Jito Trade Bundle Logs



## OpenAPI

````yaml GET /trade/debug
openapi: 3.0.1
info:
  title: Vanish Core API
  description: API endpoints for the Vanish Core service.
  license:
    name: MIT
  version: 2.0.0
servers:
  - url: https://core-api-dev.vanish.trade
security:
  - ApiKeyAuth: []
paths:
  /trade/debug:
    get:
      description: Get Jito Trade Bundle Logs
      parameters:
        - in: query
          name: tx_id
          required: true
          schema:
            type: string
          description: The transaction ID to retrieve debug logs for.
      responses:
        '200':
          description: Successful jito trade bundle logs response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetDebugTradeResponse'
        '401':
          description: Unauthorized. The request is missing a valid API key
          content:
            application/json:
              schema:
                $ref: '#/components/responses/UnauthorizedError'
        '500':
          description: Internal server error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    GetDebugTradeResponse:
      type: object
      properties:
        jito_simulation_log:
          description: Jito Trade Simulation Log.
          type: string
    Error:
      type: string
  responses:
    UnauthorizedError:
      description: API key is missing or invalid
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````