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

# Lookup card information

> Get card ownership and balance by serial number or MAC address (with or without colons)



## OpenAPI

````yaml /olive-openapi.json post /payment/lookup-card
openapi: 3.0.0
info:
  description: >-
    API Gateway for OLIVE NFC Card Payment System - Comprehensive payment, card
    management, agent operations, and admin authentication. All /api/v1 routes
    require authentication using either API Key or JWT token.
  title: OLIVE NFC Card Payment API
  termsOfService: http://swagger.io/terms/
  contact:
    name: API Support
    email: support@olive.sl
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  version: 1.0.0
servers:
  - url: https://olive-gateway-a6ba.onrender.com/api/v1
security: []
paths:
  /payment/lookup-card:
    post:
      tags:
        - POS
      summary: Lookup card information
      description: >-
        Get card ownership and balance by serial number or MAC address (with or
        without colons)
      requestBody:
        $ref: '#/components/requestBodies/handler.POSLookupCardRequest'
      responses:
        '200':
          description: Card information retrieved
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '404':
          description: Card not found
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
components:
  requestBodies:
    handler.POSLookupCardRequest:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/handler.POSLookupCardRequest'
      description: Card lookup details
      required: true
  schemas:
    handler.POSLookupCardRequest:
      type: object
      required:
        - card_identifier
      properties:
        card_identifier:
          description: 'Supports any alphanumeric: CARD0001, 48290173K, etc.'
          type: string
          example: CARD0001

````