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

# Get transaction status

> Get the current status and details of a tracked transaction



## OpenAPI

````yaml /raptor/http/openapi.json get /transaction/{signature}
openapi: 3.0.3
info:
  title: Raptor DEX Aggregator API
  description: High-performance Solana DEX aggregation API and Websocket
  version: 1.0.0
  contact:
    name: Raptor API Support
servers:
  - url: https://raptor-beta.solanatracker.io
    description: Beta server endpoint
security: []
paths:
  /transaction/{signature}:
    get:
      summary: Get transaction status
      description: Get the current status and details of a tracked transaction
      parameters:
        - name: signature
          in: path
          required: true
          schema:
            type: string
            description: Transaction signature (base58)
      responses:
        '200':
          description: Transaction status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransactionStatus'
        '404':
          description: Transaction not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '503':
          description: Transaction tracking not enabled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    TransactionStatus:
      type: object
      required:
        - signature
        - status
        - sent_at
      properties:
        signature:
          type: string
          description: Transaction signature (base58)
        status:
          type: string
          enum:
            - pending
            - confirmed
            - failed
            - expired
          description: Transaction status
        slot:
          type: integer
          description: Slot where transaction was confirmed
        sent_at:
          type: integer
          description: Unix timestamp (ms) when transaction was sent
        confirmed_at:
          type: integer
          description: Unix timestamp (ms) when transaction was confirmed
        latency_ms:
          type: integer
          description: Time from send to confirm in milliseconds
        error:
          type: string
          description: Error message if failed
        transaction_base64:
          type: string
          description: Raw transaction (base64 encoded)
        transaction:
          type: object
          description: Full parsed transaction with metadata
        events:
          type: array
          items:
            $ref: '#/components/schemas/RaptorEvent'
          description: Parsed Raptor program events
    ErrorResponse:
      type: object
      required:
        - error
        - code
      properties:
        error:
          type: string
          description: Error message
        code:
          type: integer
          description: HTTP status code
    RaptorEvent:
      type: object
      required:
        - name
        - data
      properties:
        name:
          type: string
          description: Event name
        data:
          type: string
          description: Raw event data (base64)
        parsed:
          type: object
          description: Decoded event fields

````