## Retrieve **get** `/pets/{petId}` Find pet by ID. ### Path Parameters - `petId: number` ### Returns - `Pet = object { name, photoUrls, id, 3 more }` - `name: string` - `photoUrls: array of string` - `id: optional number` - `category: optional Category` - `id: optional number` - `name: optional string` - `status: optional "available" or "pending" or "sold"` pet status in the store - `"available"` - `"pending"` - `"sold"` - `tags: optional array of Tag` - `id: optional number` - `name: optional string` ### Example ```http curl http://localhost:4000/api/v3/pets/$PET_ID \ -H "Authorization: Bearer $BARKEND_BEARER_TOKEN" ```