> ## Documentation Index
> Fetch the complete documentation index at: https://chainstack-docs-polygon-erigon-trace-deprecation.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# getSignaturesForAddress | Solana

> The Solana getSignaturesForAddress method returns the confirmed signatures for transactions involving an address. Solana via Chainstack.

<Note>
  **Archive data:** this method supports fetching historical data on [Global Nodes](/docs/global-elastic-node). See [archive methods availability](/docs/limits#solana-archive-methods-availability).
</Note>

# Solana `getSignaturesForAddress` method

The Solana `getSignaturesForAddress` method returns the confirmed signatures for transactions involving an address.

This method provides a list of signatures for transactions that involve a specific address. It is useful for tracking the transaction history of an address.

## Parameters

* `address` — the public key of the address to retrieve signatures for.
* `options` — (optional) additional options:
  * `limit` — the maximum number of signatures to return.
  * `before` — only return signatures before this signature.
  * `until` — only return signatures until this signature.

## Response

* `value` — an array of signature information objects, each containing:
  * `signature` — the signature of the transaction.
  * `slot` — the slot in which the transaction was processed.
  * `err` — whether the transaction resulted in an error.

## Use case

A practical use case for `getSignaturesForAddress` is to track the transaction history of an address. This can be useful for wallets or other applications that need to display or make use of this information.


## OpenAPI

````yaml openapi/solana_node_api/getSignaturesForAddress.json POST /9de47db917d4f69168e3fed02217d15b
openapi: 3.0.0
info:
  title: getSignaturesForAddress example
  version: 1.0.0
  description: This is an API example for Solana's getSignaturesForAddress.
servers:
  - url: https://nd-326-444-187.p2pify.com
security: []
paths:
  /9de47db917d4f69168e3fed02217d15b:
    post:
      tags:
        - query
      summary: getSignaturesForAddress
      operationId: getSignaturesForAddress
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  default: 1
                jsonrpc:
                  type: string
                  default: '2.0'
                method:
                  type: string
                  default: getSignaturesForAddress
                params:
                  type: array
                  default:
                    - 9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM
      responses:
        '200':
          description: Signatures for address details
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: array
                    items:
                      type: object

````