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



## OpenAPI

````yaml https://core.prod.gnosispay.com/user-api/openapi.json get /user/account/limit
openapi: 3.1.0
info:
  title: User Service
  version: 0.0.0
servers: []
security: []
tags:
  - name: Health
  - name: Auth
  - name: User
  - name: Cards
  - name: Phone
  - name: PCI
  - name: Terms
  - name: Source of Funds
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.
      operationId: User_getUserAccountLimit
      parameters: []
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountLimit'
        '401':
          description: Access is unauthorized.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Unauthorized'
        '404':
          description: The server cannot find the requested resource.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFound'
        '502':
          description: Server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetUserAccountLimitBadGateway'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - BearerAuth: []
components:
  schemas:
    AccountLimit:
      type: object
      required:
        - amount
        - currency
        - decimals
        - syncStatus
        - updatedAt
        - spentToday
        - remaining
      properties:
        amount:
          type: integer
          format: int64
          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
          format: int32
          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, '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
          format: int64
          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
          format: int64
          description: >-
            Remaining headroom today, in the currency's smallest unit. Equals
            max(0,

            amount - spentToday).
    Unauthorized:
      type: object
      required:
        - success
        - error
      properties:
        success:
          type: boolean
          enum:
            - false
        error:
          type: string
    NotFound:
      type: object
      required:
        - success
        - error
      properties:
        success:
          type: boolean
          enum:
            - false
        error:
          type: string
    GetUserAccountLimitBadGateway:
      type: object
      required:
        - success
        - error
      properties:
        success:
          type: boolean
          enum:
            - false
        error:
          type: string
    Error:
      type: object
      required:
        - success
        - error
      properties:
        success:
          type: boolean
          enum:
            - false
        error:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: Bearer

````