My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Alejandra Pizarnik Prosa completa Alejandra Pizarnik Complete Prose by Alejandra Pizarnik on Ipad
  • DOWNLOADS Harry Potter and the Goblet of Fire The Illustrated Edition by J. K. Rowling Jim Kay
  • PDF EPUB Download You Between the Lines by Katie Naymon Full Book
  • pdf download Ignorance and Bliss On Wanting Not to Know by Mark Lilla
  • Pdf ePub Quan Tao by Ryan Buchanan download ebook
  • Read online Art of Invincible Season 1 by Marc Sumerak Robert Kirkman
  • download pdf The Evolution of Claire Jurassic World by Tess Sharpe Random House
  • PDF Download Long Island by Colm Tóibín
  • The Wars of the Roses The Medieval Art of Graham Turner by Graham Turner on Audiobook New
  • Pdf ePub Hell Mode Vol. 7 The Hardcore Gamer Dominates in Another World with Garbage Balancing by
  • Vantage Point A Novel by Sara Sligar on Iphone New Format
  • Read Pdf Duty to Protect by Lisa Phillips Carol J. Post
  • Boys in the Valley by Philip Fracassi on Iphone New Format
  • Read pdf Where to Hide a Star by Oliver Jeffers
  • Read online Bury Our Bones in the Midnight Soil by V. E. Schwab
  • Download PDF Green Lantern Vol. 2 Love and War by Jeremy Adams Amancay Nahuelpan
  • pdf download Her Best Friend the Duke by Laura Martin
  • 100 Years of Planetaria 100 Stories of People Places and Devices by Matthew McMahon Pedro M. P. R
  • Download Pdf A Slash of Emerald by Patrice McDonough
  • The Amish Spinsters Courtship and Her New Amish Family by Emma Miller Carrie Lighte on Ipad
  • PDF EPUB Download Hillbilly Elegy A Memoir of a Family and Culture in Crisis by J. D. Vance Full B
  • PDF EPUB Download Winter Lost by Patricia Briggs Full Book
  • Read Pdf Abigail Gets Left Out Cant sing. Cant dance. Can count on Jesus by Bethany McIlrath Kati
  • Read online Autodesk Maya 2023 Basics Guide by Kelly L. Murdock
  • pdf download The Art of Wish by Disney
  • The Warriors Bride Alliance by Denise Lynn on Iphone New Format
  • DOWNLOAD PDF EPUB Practice Makes Perfect A Novel by Sarah Adams
  • DOWNLOAD PDF EPUB The House at Pooh Corner Classic Gift Edition by A. A. Milne E. H. Shepard
  • Read pdf The Monsters Know What Theyre Doing Combat Tactics for Dungeon Masters by Keith Ammann
  • download pdf Along the River of Flesh by Kristopher Triana
  • Read Pdf Babs the Butterfly A Tale of Kindness and Courage- Transforming from Bystander to Upstand
  • PDF DOWNLOAD Marvel Arms and Armor The Mightiest Weapons and Technology in the Universe by DK on I
  • PDF DOWNLOAD Cardcaptor Sakura Clear Card 14 by Clamp on Iphone
  • download pdf Trophies and Scars Ray Evernham by Ray Evernham Joe Garner Jeff Gordon
  • Pdf ePub DisEnchanted by D. M. Guay download ebook
  • DOWNLOAD PDF EPUB Elevated Ambitions by Aurora Steinhart
  • 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-07 12:57:55
Previous
DOWNLOAD PDF EPUB Elevated Ambitions by Aurora Steinhart
Next
Add a new pet to the store
Built with