# Find pet by ID Returns a single pet Endpoint: GET /pet/{petId} Version: 1.0.20-SNAPSHOT Security: api_key, petstore_auth ## Path parameters: - `petId` (integer, required) ID of pet to return ## Response 200 fields (application/xml): - `id` (integer) Example: 10 - `name` (string, required) Example: "doggie" - `category` (object) - `photoUrls` (array, required) - `tags` (array) - `status` (string) pet status in the store Enum: "available", "pending", "sold"