> ## 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.

# getSignatureStatuses

> Runs the Solana RPC `getSignatureStatuses` method.



## OpenAPI

````yaml getsignaturestatuses post /
openapi: 3.1.0
info:
  title: Solana RPC
  version: 1.0.0
  description: Solana RPC HTTP method reference.
servers:
  - url: https://rpc-mainnet.solanatracker.io
    description: Mainnet RPC endpoint
security: []
paths:
  /:
    post:
      summary: Run `getSignatureStatuses`
      description: Runs the Solana RPC `getSignatureStatuses` method.
      operationId: getsignaturestatuses
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                jsonrpc:
                  allOf:
                    - type: string
                      enum:
                        - '2.0'
                      description: The JSON-RPC protocol version.
                      example: '2.0'
                      default: '2.0'
                id:
                  allOf:
                    - type: string
                      description: A unique identifier for the request.
                      example: '1'
                      default: '1'
                method:
                  allOf:
                    - type: string
                      enum:
                        - getSignatureStatuses
                      description: The name of the RPC method to invoke.
                      example: getSignatureStatuses
                      default: getSignatureStatuses
                params:
                  allOf:
                    - type: array
                      description: >-
                        Array containing transaction signatures and optional
                        configuration object.
                      default:
                        - - >-
                            4gRWqQXFqYatwRvgQiLGQZb7FekvaWqNuK1R7LrgJ3F1m756WgT1n72Msp6JtAsGnngYo8DKusc2vKvipZeW2uYT
                      items:
                        oneOf:
                          - type: array
                            description: >-
                              Array of transaction signatures (up to 256), as
                              base-58 encoded strings.
                            items:
                              type: string
                              example: >-
                                4gRWqQXFqYatwRvgQiLGQZb7FekvaWqNuK1R7LrgJ3F1m756WgT1n72Msp6JtAsGnngYo8DKusc2vKvipZeW2uYT
                          - type: object
                            description: Configuration options.
                            properties:
                              searchTransactionHistory:
                                type: boolean
                                description: >-
                                  Enable searching beyond recent status cache to
                                  find older historical transactions.
                                example: true
              required:
                - jsonrpc
                - id
                - method
                - params
            examples:
              requestExample:
                value:
                  jsonrpc: '2.0'
                  id: db16f277-1a22-41ff-9f85-f37e2cd77900
                  method: getSignatureStatuses
                  params:
                    - - >-
                        4gRWqQXFqYatwRvgQiLGQZb7FekvaWqNuK1R7LrgJ3F1m756WgT1n72Msp6JtAsGnngYo8DKusc2vKvipZeW2uYT
                    - searchTransactionHistory: true
      responses:
        '200':
          description: Successfully retrieved signature statuses.
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    allOf:
                      - type: string
                        enum:
                          - '2.0'
                        description: The JSON-RPC protocol version.
                        example: '2.0'
                  id:
                    allOf:
                      - type: string
                        description: Identifier matching the request.
                        example: '1'
                  result:
                    allOf:
                      - type: object
                        description: Contains the context and signature status values.
                        properties:
                          context:
                            type: object
                            properties:
                              slot:
                                type: integer
                                description: Slot in which the data was fetched.
                                example: 82
                          value:
                            type: array
                            description: List of transaction signature statuses.
                            items:
                              oneOf:
                                - type: 'null'
                                  description: Null if the transaction is unknown.
                                - type: object
                                  properties:
                                    slot:
                                      type: integer
                                      description: >-
                                        Solana blockchain slot number where this
                                        transaction was included in a block.
                                      example: 48
                                    confirmations:
                                      oneOf:
                                        - type: integer
                                          description: >-
                                            Number of confirmed blocks since this
                                            transaction was processed (null if fully
                                            finalized).
                                        - type: 'null'
                                          description: >-
                                            Null indicates transaction has reached
                                            maximum finality (rooted).
                                      example: 48
                                    err:
                                      oneOf:
                                        - type: object
                                          description: >-
                                            Error object containing details if the
                                            transaction failed during execution.
                                        - type: 'null'
                                          description: >-
                                            Null indicates the transaction executed
                                            successfully without errors.
                                      example: null
                                    confirmationStatus:
                                      type: string
                                      enum:
                                        - processed
                                        - confirmed
                                        - finalized
                                      description: >-
                                        Current finality status of the
                                        transaction on the Solana network
                                        (processed → confirmed → finalized).
                                      example: finalized
              examples:
                responseExample:
                  value:
                    jsonrpc: '2.0'
                    id: db16f277-1a22-41ff-9f85-f37e2cd77900
                    result:
                      context:
                        slot: 82
                      value:
                        - slot: 48
                          confirmations: 48
                          err: null
                          confirmationStatus: finalized
                        - null
      security:
        - ApiKeyQuery: []
components:
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api_key

````