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

# List Pet Benefits



## OpenAPI

````yaml POST /pet-benefits
openapi: 3.1.0
info:
  title: NestVet API
  version: '1.8'
  description: >-
    API for managing subscriptions, pet benefits, payment plans, products,
    invoices, and Stripe-integrated financial data.
servers:
  - url: https://nestvet.com/api/1.1/wf
security: []
paths:
  /pet-benefits:
    post:
      summary: List Pet Benefits
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PetBenefitsRequest'
      responses:
        '200':
          description: A list of pet benefits
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PetBenefit'
      security:
        - bearerAuth: []
components:
  schemas:
    PetBenefitsRequest:
      allOf:
        - $ref: '#/components/schemas/PaginationRequest'
        - type: object
          properties:
            id:
              type: string
            subscription_id:
              type: string
            pet_id:
              type: string
            clinic:
              type: string
              description: >-
                Optional filter; returns pet benefits within the provided
                clinic.
            created_at_since:
              type: string
              format: date-time
            updated_at_since:
              type: string
              format: date-time
    PetBenefit:
      type: object
      properties:
        id:
          type: string
        pet:
          type: string
        subscription:
          type: string
        is_addon:
          type: boolean
        monthly_revenue_to_recognize_per_unit:
          type: number
          format: double
          nullable: true
        annual_revenue_to_recognize_per_unit:
          type: number
          format: double
          nullable: true
        revenue_to_recognize_per_unit:
          type: number
          format: double
        allocated:
          type: integer
        remaining:
          type: integer
          nullable: true
        benefit_name:
          type: string
        product_ids:
          type: array
          items:
            type: string
        benefit_description:
          type: string
        wellness_plan_name:
          type: string
        retail_value:
          type: number
          format: double
        is_unlimited:
          type: boolean
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    PaginationRequest:
      type: object
      required:
        - organization
        - limit
        - offset
      properties:
        organization:
          type: string
        limit:
          type: integer
          format: int32
        offset:
          type: integer
          format: int32
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````