> ## Documentation Index
> Fetch the complete documentation index at: https://nayax-44d6e37b-docs-marshall-faq-redistribution.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Card's Revalue

> Retrieves the revalue amount associated with a specific card, identified by the card's unique identifier.



## OpenAPI

````yaml /openapi/lynx.yaml get /v1/cards/{CardUniqueIdentifier}/revalue
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/cards/{CardUniqueIdentifier}/revalue:
    get:
      tags:
        - Cards
      summary: Get Card's Revalue
      description: >-
        Retrieves the revalue amount associated with a specific card, identified
        by the card's unique identifier.
      operationId: get-card-revalue
      parameters:
        - name: CardUniqueIdentifier
          in: path
          required: true
          description: >-
            The unique identifier of the card for which the revalue amount is
            being retrieved.
          schema:
            type: string
      responses:
        '200':
          description: Revalue amount retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CardValue'
components:
  schemas:
    CardValue:
      type: object
      description: Represents the credit value associated with a card.
      properties:
        value:
          type: number
          format: double
          description: The credit value of the card.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````