My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download The Holiday Visitor by Tara Taylor Quinn Full Book
  • Read pdf Pedal Pusher How One Womans Bicycle Adventure Helped Change the World by Mary Boone Lisa
  • Rescue Tails On Precarious Peaks by StacyPlays on Audiobook New
  • Read pdf The House of Awadh A Hidden Tragedy by Aletta André Abhimanyu Kumar
  • PDF DOWNLOAD A World of Patterns 100 Vibrant Postcards by Christine Chitnis on Iphone
  • Lobster and other things Im learning to love by Hollie McNish on Audiobook New
  • download pdf The Light Pours Out of Me The Official John McGeoch Story by Rory Sullivan-Burke
  • Read Pdf From Trenton to Yorktown Turning Points of the Revolutionary War by John R. Maass
  • PDF Kindle The Outlaws Bride by Catherine Palmer
  • pdf download Jonty Gentoo The Adventures of a Penguin by Julia Donaldson Axel Scheffler
  • Download Pdf One for My Enemy by Olivie Blake
  • PDF EPUB Download Oh Miriam Stories From An Extraordinary Life by Miriam Margolyes Full Book
  • Proud Flesh A Memoir of Motherhood Intimate Violence and Reclaiming Pleasure by Catherine Simone G
  • download pdf Cuentos by Dan Henderson
  • PDF EPUB Download Pokémon The Official Sticker Book of the Kanto Region The Original 151 by Pikachu
  • DOWNLOAD PDF EPUB Whole Life Sentence by Lynda La Plante
  • Daddy Wanted by Renee Andrews on Audiobook New
  • Read pdf More Tales from Fur After Dark by Eric W Schwartz
  • PDF EPUB Download A Murder Most French by Colleen Cambridge Full Book
  • Online Read Ebook Tomo-chan is a Girl Volumes 4-6 Omnibus Edition by Fumita Yanagida
  • Read online The Too-Perfect Saint Tossed Aside by My Fiancé and Sold to Another Kingdom Manga Vol. 1
  • Read online Octopussy and The Living Daylights by Ian Fleming
  • PDF EPUB Download Alive in Their Garden The True Story of the Mirabal Sisters and Their Fight for
  • pdf download The Girls of the Glimmer Factory A Novel by Jennifer Coburn
  • Zechariah by John MacArthur on Ipad
  • PDF Kindle Cunning Vows by Kia Carrington-Russell T L Smith
  • Download PDF Musashi An Epic Novel of the Samurai Era by Eiji Yoshikawa Charles Terry
  • Online Read Ebook Classroom Assessment Techniques Formative Feedback Tools for College and Universit
  • PDF Download these heavy lungs we breathe with by K. S. Whittaker
  • epub download Mommy Wanted by Renee Andrews
  • Pdf ePub Its Getting Hot in Here A Novel by Jane Costello download ebook
  • Download Pdf The Day I Left You A Novel by Caroline Bishop
  • Read pdf The Gain Principle Mastering Lifes Growth Cycles for Success and Service by Steve Pruett
  • PDF DOWNLOAD Nesting A Novel by Roisín ODonnell on Iphone
  • Read pdf Delicate Escape Deluxe Edition by Catherine Cowles
  • Download Pdf Distance A Dark Mafia Romance by Luna Mason
  • Sample APIs
    • Find pet by ID
      GET
    • Add a new pet to the store
      POST
    • Update an existing pet
      PUT
    • Deletes a pet
      DELETE
    • Finds Pets by status
      GET
  1. Sample APIs

Find pet by ID

GET
/pet/{petId}
pet
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/pet/1'
Response Response Example
200 - Success example
{
    "code": 0,
    "data": {
        "name": "Hello Kitty",
        "photoUrls": [
            "http://dummyimage.com/400x400"
        ],
        "id": 3,
        "category": {
            "id": 71,
            "name": "Cat"
        },
        "tags": [
            {
                "id": 22,
                "name": "Cat"
            }
        ],
        "status": "sold"
    }
}

Request

Path Params
petId
string 
required
pet ID
Example:
1

Responses

🟢200OK
application/json
Body
code
integer 
required
status code
>= 0<= 0
data
object (Pet) 
required
pet details
id
integer <int64>
required
Pet ID
>= 1
category
object (Category) 
required
group
name
string 
required
name
Example:
doggie
photoUrls
array[string]
required
image URL
tags
array[object (Tag) {2}] 
required
tag
status
enum<string> 
required
Pet Sales Status
Allowed values:
availablependingsold
🟠404Record not found
🟠400Invalid input
Modified at 2025-06-13 02:29:10
Previous
Download Pdf Distance A Dark Mafia Romance by Luna Mason
Next
Add a new pet to the store
Built with