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

# getSignaturesForAddress



## OpenAPI

````yaml getsignaturesforaddress post /
openapi: 3.1.0
info:
  title: Solana RPC
  version: 1.0.0
servers:
  - url: https://rpc-mainnet.solanatracker.io
    description: Mainnet RPC endpoint
security: []
paths:
  /:
    post:
      summary: getSignaturesForAddress
      operationId: getsignaturesforaddress
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                jsonrpc:
                  allOf:
                    - type: string
                      enum:
                        - '2.0'
                      example: '2.0'
                      description: The JSON-RPC protocol version.
                      default: '2.0'
                id:
                  allOf:
                    - type: string
                      example: '1'
                      description: A unique identifier for the request.
                      default: '1'
                method:
                  allOf:
                    - type: string
                      enum:
                        - getSignaturesForAddress
                      example: getSignaturesForAddress
                      description: The name of the RPC method to invoke.
                      default: getSignaturesForAddress
                params:
                  allOf:
                    - type: array
                      description: >-
                        Array containing the required account address and
                        optional configuration object.
                      default:
                        - Vote111111111111111111111111111111111111111
                      items:
                        oneOf:
                          - type: string
                            description: >-
                              Solana account address to retrieve transaction
                              history for (wallet, token, program, NFT, etc.).
                            example: Vote111111111111111111111111111111111111111
                          - type: object
                            description: >-
                              Advanced query configuration for customizing
                              transaction history retrieval.
                            properties:
                              commitment:
                                type: string
                                description: The commitment level for the request.
                                enum:
                                  - confirmed
                                  - finalized
                                  - processed
                                example: finalized
                              minContextSlot:
                                type: integer
                                description: >-
                                  The minimum slot that the request can be
                                  evaluated at.
                                example: 1000
                              limit:
                                type: integer
                                description: >-
                                  Maximum number of transaction signatures to
                                  return in a single request (1-1,000).
                                example: 1000
                              before:
                                type: string
                                description: >-
                                  Pagination parameter to get transactions
                                  before this signature (earlier in time).
                                example: >-
                                  5XXN7L7cMGYTvckcaNeTXxhJgxeT1JTa9auwa2yXCFR1NXzwXrXNAWx4SaAw48S5186VzvXiXVEsWJu1WFR5AAmg
                              until:
                                type: string
                                description: >-
                                  Get transactions until this signature is
                                  reached, useful for specific time ranges.
                                example: >-
                                  3jweEauJ3PK6SWCZ1PGjBvj8vDdWG3KpwATGy1ARAXFSDwt8GFXM7W5Ncn16wmqokgpiKRLuS83KUxyZyv2sUYv
              required:
                - jsonrpc
                - id
                - method
                - params
            examples:
              example:
                value:
                  jsonrpc: '2.0'
                  id: db16f277-1a22-41ff-9f85-f37e2cd77900
                  method: getSignaturesForAddress
                  params:
                    - Vote111111111111111111111111111111111111111
      responses:
        '200':
          description: Successfully retrieved signatures for the specified address.
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    allOf:
                      - type: string
                        enum:
                          - '2.0'
                        example: '2.0'
                        description: The JSON-RPC protocol version.
                  id:
                    allOf:
                      - type: string
                        example: '1'
                        description: Identifier matching the request.
                  result:
                    allOf:
                      - type: array
                        description: List of transaction signature information.
                        items:
                          type: object
                          description: Details for each transaction signature.
                          properties:
                            signature:
                              type: string
                              description: >-
                                Transaction signature as a base-58 encoded
                                string.
                              example: >-
                                5XXN7L7cMGYTvckcaNeTXxhJgxeT1JTa9auwa2yXCFR1NXzwXrXNAWx4SaAw48S5186VzvXiXVEsWJu1WFR5AAmg
                            slot:
                              type: integer
                              description: >-
                                The slot that contains the block with the
                                transaction.
                              example: 114
                            err:
                              oneOf:
                                - type: object
                                  description: Error if the transaction failed
                                - type: 'null'
                              description: >-
                                Error if the transaction failed, or null if
                                successful.
                              example: null
                            memo:
                              oneOf:
                                - type: string
                                  description: Memo associated with the transaction
                                - type: 'null'
                              description: >-
                                Memo associated with the transaction, or null if
                                none.
                              example: null
                            blockTime:
                              oneOf:
                                - type: integer
                                  description: Estimated production time as Unix timestamp
                                - type: 'null'
                              description: >-
                                Estimated production time as Unix timestamp
                                (seconds since epoch), or null if not available.
                              example: null
                            confirmationStatus:
                              oneOf:
                                - type: string
                                  enum:
                                    - processed
                                    - confirmed
                                    - finalized
                                  description: Transaction's cluster confirmation status
                                - type: 'null'
                              description: Transaction's cluster confirmation status.
                              example: finalized
              examples:
                response:
                  value:
                    jsonrpc: '2.0'
                    id: 1
                    result:
                      - signature: >-
                          5XXN7L7cMGYTvckcaNeTXxhJgxeT1JTa9auwa2yXCFR1NXzwXrXNAWx4SaAw48S5186VzvXiXVEsWJu1WFR5AAmg
                        slot: 114
                        err: null
                        memo: null
                        blockTime: null
                        confirmationStatus: finalized
      security:
        - ApiKeyQuery: []
components:
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api_key

````