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

# Get Account TX Subscriptions

> List account transaction subscriptions for this webhook with pagination.



## OpenAPI

````yaml GET /webhooks/{webhook_id}/account-tx/subscriptions
openapi: 3.0.0
info:
  title: Webhooks API for TON blockchain
  version: 1.0.0
  description: Real-time webhook subscriptions for TON blockchain events
  contact:
    name: Support
    email: support@tonkeeper.com
servers:
  - url: https://rt.tonapi.io
  - url: https://rt-testnet.tonapi.io
security:
  - BearerAuth: []
tags:
  - name: Webhooks
    description: Webhook CRUD operations
  - name: Account TX
    description: Account transaction subscriptions
  - name: Mempool MSG
    description: Mempool message subscriptions
  - name: Opcode MSG
    description: Opcode message subscriptions
  - name: New Contracts
    description: New contract deployment subscriptions
paths:
  /webhooks/{webhook_id}/account-tx/subscriptions:
    get:
      tags:
        - Account TX
      summary: Get account TX subscriptions
      description: List account transaction subscriptions for this webhook with pagination.
      operationId: getAccountTxSubscriptions
      parameters:
        - $ref: '#/components/parameters/WebhookId'
        - name: offset
          in: query
          schema:
            type: integer
            default: 0
          description: Pagination offset.
        - name: limit
          in: query
          schema:
            type: integer
            default: 10
          description: Maximum number of results.
      responses:
        '200':
          description: Subscription list
          content:
            application/json:
              schema:
                type: object
                required:
                  - account_tx_subscriptions
                properties:
                  account_tx_subscriptions:
                    type: array
                    items:
                      $ref: '#/components/schemas/AccountSubscription'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    WebhookId:
      name: webhook_id
      in: path
      required: true
      schema:
        type: integer
      description: Webhook identifier.
  schemas:
    AccountSubscription:
      type: object
      required:
        - account_id
        - last_delivered_lt
      properties:
        account_id:
          type: string
          description: Subscribed account address.
        last_delivered_lt:
          type: integer
          description: Last delivered logical time.
        failed_at:
          type: string
          nullable: true
          description: Timestamp of last failure.
        failed_lt:
          type: integer
          nullable: true
          description: Logical time of failed delivery.
        failed_attempts:
          type: integer
          nullable: true
          description: Number of failed delivery attempts.
    ErrorResponse:
      type: object
      required:
        - message
        - status_code
      properties:
        message:
          type: string
        status_code:
          type: integer
  responses:
    Unauthorized:
      description: Unauthorized — missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            message: unauthorized
            status_code: 401
    NotFound:
      description: Webhook not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            message: webhook not found
            status_code: 404
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >
        API key from [tonconsole.com](https://tonconsole.com/). Can also be
        passed as a `token` query parameter.

````