Modern PetstoreAPI Docs
HomeGuidesModern PetstoreAPI
Classic PetstoreAPI
HomeGuidesModern PetstoreAPI
Classic PetstoreAPI
    • Pet
      • Get Pet
        GET
      • Update Pet
        PUT
      • Delete Pet
        DELETE
      • Create Pet
        POST
      • List Pets
        GET
      • Upload Pet Image
        POST
    • Chat
      • Pet Care AI Consultation
        POST
    • Payments
      • Pay Order
        POST
    • Store
      • Get Store Inventory
        GET
      • List Inventory
        GET
      • Create Order
        POST
      • Get Order
        GET
      • Cancel Order
        DELETE
      • Callback Example
        POST
    • User
      • Create User
      • Update User
      • Get User
      • Delete User Account
      • Create Authentication Token
    • Webhooks
      • Order Status Changed Event
      • Payment Succeeded Event
    • Schemas
      • Pet
      • PetCollection
      • User
      • OrderPayment
      • Bank Card
      • Bank Account
      • Category
      • Links
      • Order
      • ApiResponse
      • Tag
      • Error
    HomeGuidesModern PetstoreAPI
    Classic PetstoreAPI
    HomeGuidesModern PetstoreAPI
    Classic PetstoreAPI

    PetCollection

    Collection of pets with pagination

    {
        "data": [
            {
                "id": "019b4132-70aa-764f-b315-e2803d882a24",
                "species": "DOG",
                "name": "Whiskers",
                "breed": "Domestic Shorthair",
                "ageMonths": 18,
                "size": "SMALL",
                "color": "Orange Tabby",
                "gender": "MALE",
                "goodWithKids": true,
                "price": "75.00",
                "currency": "USD",
                "description": "string",
                "status": "AVAILABLE",
                "createdAt": "2025-12-21T13:56:23Z",
                "updatedAt": "2025-12-21T13:56:23Z",
                "tenantId": "550e8400-e29b-41d4-a716-446655440000",
                "photos": [
                    "http://example.com"
                ],
                "medicalInfo": {
                    "spayedNeutered": true,
                    "vaccinated": true,
                    "microchipped": true,
                    "specialNeeds": true,
                    "healthNotes": "string"
                }
            }
        ],
        "pagination": {
            "page": 1,
            "limit": 1,
            "totalItems": 0,
            "totalPages": 0
        }
    }
    Built with