## Retrieve `client.pets.retrieve(numberpetID, RequestOptionsoptions?): Pet` **get** `/pets/{petId}` Find pet by ID. ### Parameters - `petID: number` ### Returns - `Pet` - `name: string` - `photoUrls: Array` - `id?: number` - `category?: Category` - `id?: number` - `name?: string` - `status?: "available" | "pending" | "sold"` pet status in the store - `"available"` - `"pending"` - `"sold"` - `tags?: Array` - `id?: number` - `name?: string` ### Example ```typescript import Barkend from 'barkend'; const client = new Barkend({ bearerToken: process.env['BARKEND_BEARER_TOKEN'], // This is the default and can be omitted }); const pet = await client.pets.retrieve(0); console.log(pet.id); ```