> ## Documentation Index
> Fetch the complete documentation index at: https://gnosispay-feat-v2-auth-module.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Account Daily Spending Limit

> Returns the daily spending limit configured on the authenticated user's account. `amount` is in the currency's smallest unit — for USD that means cents (e.g. `1000` = $10.00, `1000000` = $10,000.00). `syncStatus` indicates whether the most recent update has been applied downstream.



## OpenAPI

````yaml https://gp-auth-module.prod.gnosispay.com/openapi.json get /user/account/limit
openapi: 3.0.0
info:
  version: 1.0.0
  title: SIWE Authentication API
  description: Sign In With Ethereum authentication service
servers:
  - url: https://gp-auth-module.prod.gnosispay.com
    description: API server
security: []
paths:
  /user/account/limit:
    get:
      tags:
        - User
      summary: Get Account Daily Spending Limit
      description: >-
        Returns the daily spending limit configured on the authenticated user's
        account. `amount` is in the currency's smallest unit — for USD that
        means cents (e.g. `1000` = $10.00, `1000000` = $10,000.00). `syncStatus`
        indicates whether the most recent update has been applied downstream.
      responses:
        '200':
          description: Account limit retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountLimit'
        '401':
          description: Unauthorized - Invalid JWT
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: User, account, or limit not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '502':
          description: Bad Gateway - failed to fetch limit from Core API
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - Bearer: []
components:
  schemas:
    AccountLimit:
      type: object
      properties:
        amount:
          type: integer
          description: >-
            Daily limit in the currency's smallest unit (e.g. cents for USD).
            Divide by 10^decimals to get the major-unit value. For USD
            (decimals=2): amount=1000 means $10.00, amount=1000000 means
            $10,000.00.
        currency:
          type: string
          description: ISO-4217 currency code, e.g. USD.
        decimals:
          type: integer
          description: Number of decimal places for this currency (e.g. 2 for USD).
        syncStatus:
          type: string
          enum:
            - pending
            - synced
            - failed
          description: >-
            Replication state of the limit. 'pending' immediately after an
            update, 'synced' once the change has been applied downstream,
            'failed' if the change could not be applied after retries.
        updatedAt:
          type: string
          format: date-time
          description: Last time this limit was modified.
        spentToday:
          type: integer
          description: >-
            Amount spent today against this limit, in the currency's smallest
            unit (e.g. cents for USD). Resets at the start of each calendar day.
        remaining:
          type: integer
          description: >-
            Remaining headroom today, in the currency's smallest unit. Equals
            `max(0, amount - spentToday)`.
      required:
        - amount
        - currency
        - decimals
        - syncStatus
        - updatedAt
        - spentToday
        - remaining
    Error:
      type: object
      properties:
        success:
          type: boolean
          enum:
            - false
        error:
          type: string
      required:
        - success
        - error

````