My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read online Karnali Blues by Buddhisagar Michael Hutt
  • PDF Download The Perfection Trap Embracing the Power of Good Enough by Thomas Curran
  • Download PDF The House at Pooh Corner Classic Gift Edition by A. A. Milne E. H. Shepard
  • The Body at the Roman Baths A gripping and charming cozy crime novel by Kate Hardy on Ipad
  • epub download The Crash by Freida McFadden
  • PDF Pathfinder RPG Pathfinder Player Core P2 by Logan Bonner Jason Bulmahn Stephen Radney-MacFarl
  • download pdf Melvill by Rodrigo Fresán Will Vanderhyden
  • DOWNLOAD PDF EPUB The Exorcism Files True Stories of Demonic Possession by Adam Blai
  • epub download In Winter I Get Up at Night A Novel by Jane Urquhart
  • PDF EPUB Download Baseball Card Price Guide 47 by Beckett Media Full Book
  • Pedal Pusher How One Womans Bicycle Adventure Helped Change the World by Mary Boone Lisa Anchin on
  • PDF DOWNLOAD Her Amish Chaperone and The Amish Bakers Rival by Leigh Bale Marie E. Bast on Iphone
  • Pdf ePub Imperfect Solidarities by Aruna DSouza download ebook
  • PDF Kindle Text Appeal by Kylie Scott
  • Read pdf Prometeo Americano American Prometheus by Kai Bird Martin J. Sherwin
  • epub download The Art Thief A True Story of Love Crime and a Dangerous Obsession by Michael Finkel
  • Online Read Ebook Teenage Mutant Ninja Turtles The Mirage Years 1993-1995 by Jim Lawson
  • Remembering Peasants A Personal History of a Vanished World by Patrick Joyce on Audiobook New
  • epub download DD Monster Manual 2024 by Wizards of the Coast
  • epub download Plan Red Chinas Project to Destroy America by Gordon G. Chang
  • Puppy Love by Elle Sprinkle on Audiobook New
  • Download Pdf The Bosss Mistletoe Maneuvers by Linda Thomas-Sundstrom
  • PDF Kindle Sugar Apple Fairy Tale Vol. 7 light novel by Miri Mikawa Aki Nicole Wilder
  • Unlocking the Keto Code The Revolutionary New Science of Keto That Offers More Benefits Without Depr
  • Download PDF Knucklehead Poems by Tony Keith Jr.
  • Disney The Art of Moana 2 by Kalikolehua Hurley Jennifer Lee David Derrick Jr. Jason Hand Dana L
  • PDF DOWNLOAD Modern Architecture A-Z by TASCHEN on Iphone
  • Read pdf Eight Billion Genies Deluxe Edition Vol. 1 by Charles Soule Ryan Browne
  • Download PDF Once Upon a Wishbone Finding Light Through a Story of Hope Connection and Rediscovered
  • DOWNLOADS Only Say Good Things Surviving Playboy and Finding Myself by Crystal Hefner
  • Read Pdf The Boy Who Ruled the Monsters Volume 2 by Sin Guilty NAKAMURA 8 Kamishiro Taishi
  • Online Read Ebook Retreat A Novel by Krysten Ritter
  • Read Pdf Sable Peak by Devney Perry
  • epub download The Katharina Code by Jïrn Lier Horst
  • PDF DOWNLOAD Tamamoris Fantasies Never Stop Vol. 1 by TATSUWAIPU on Iphone
  • PDF DOWNLOAD Acts of Murder Murder in a Small Town by L.R. Wright on Iphone
  • PDF DOWNLOAD In the Foothills of the Himalayas by Sarah Hussain on Iphone
  • Download Pdf Adolescence Boy it by Aya Sakyou Yuzuki N
  • 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-09 01:48:30
Previous
Download Pdf Adolescence Boy it by Aya Sakyou Yuzuki N
Next
Add a new pet to the store
Built with