Pet Store
    • Store API
      • Start your Apidog journey
      • Pet
        • List Pets
        • Create Pet
        • Get Pet
        • Update Pet
        • Delete Pet
        • Upload Pet Image
      • Chat
        • Pet Care AI Consultation
      • Store
        • Get Store Inventory
        • List all inventories
        • Create Order
        • Get Order
        • Cancel Order
        • Callback Example
      • Payments
        • Pay Order
      • User
        • Create User
        • Update User
        • Get User
        • Delete User Account
        • Create Authentication Token
      • Webhooks
        • Order Status Changed Event
        • Payment Succeeded Event
      • Websocket, Socket.IO & more
        • gRPC API
        • Other protocol API example
        • WebSocket example
        • Socket.IO example
        • Webhook example
        • GraphQL example
        • SSE example
        • SOAP example
      • Schemas
        • Pet
        • User
        • PetCollection
        • OrderPayment
        • Bank Card
        • Order
        • Bank Account
        • ApiResponse
        • Error
    • Admin API
      • Dashboard
        • Get Dashboard Stats
      • User Management
        • List Users
        • Get User Details
        • Update User Status
      • Order Management
        • List All Orders
        • Force Cancel Order
      • Audit Logs
        • Get Audit Log Details
      • Schemas
        • AuditLog

    Pet

    Animal information in the pet store available for adoption.

    {
        "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"
        }
    }
    Built with