My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOADS The War on Men Why Society Hates Them and Why We Need Them by Owen Strachan
  • Read pdf Tribal How the Cultural Instincts That Divide Us Can Help Bring Us Together by Michael Mo
  • Jimmy Page The Anthology by Jimmy Page on Ipad
  • Read Pdf The Nightmare Before Kissmas A Royals and Romance Novel by Sara Raasch
  • PDF Everything Under the Sun The Complete Guide to Pink Floyd by Mike Cormack
  • Online Read Ebook Never Nap in a Casket by J W Hodge
  • PDF EPUB Download Children of Virtue and Vengeance by Tomi Adeyemi Full Book
  • PDF EPUB Download A Prey to Murder A George Molly Palmer-Jones Novel by Ann Cleeves Full Book
  • PDF EPUB Download Doctor Who Wild Blue Yonder Target Collection by Mark Morris Full Book
  • Read Pdf The Caterpillar and the Cloud by K R Avery
  • epub download Indaba My Children African Folktales by Vusamazulu Credo Mutwa Vusamazulu C. Mutwa
  • PDF Download A Vindication of the Rights of Woman by Mary Wollstonecraft
  • Read online Source Code My Beginnings by Bill Gates
  • PDF Download Appalachian Trail Thru-Hikers Companion 2025 by Appalachian Long Distance Hikers Asso
  • pdf download Collided Deluxe Edition by Lauren Asher
  • Read online Credence by Penelope Douglas
  • Pdf ePub Mauve Gloves Madmen Clutter Vine And Other Stories Sketches and Essays by Tom Wolfe d
  • epub download A Governesss Guide to Passion and Peril by Manda Collins
  • Read pdf The Unrealizable Towards a Politics of Ontology by Giorgio Agamben Alberto Toscano
  • PDF EPUB Download RAF Fighters vs Ju 87 Stuka In the West 1940-41 by Andy Saunders Gareth Hector
  • pdf download True Crime Fairy Tales Little Red Riding Hood by Alexander Cox Stuart Lynch
  • Read Pdf Thieves of Purpose Overcoming the 12 Mindsets Robbing You of Your Potential Self Help Too
  • Read online The God of the Woods A Novel by Liz Moore
  • Read Pdf The Reckoning of Roku Avatar the Last Airbender Chronicles of the Avatar Book 5 by Randy
  • Read Pdf The Wrong Wolf by Chris Craighead Matthew Klein
  • Read pdf At the Wolfs Table by Rosella Postorino Leah Janeczko
  • DOWNLOAD PDF EPUB The Sea of Terror by Stuart Gibbs Chris Choi
  • Online Read Ebook The End of Education as We Know It Regenerative Learning for Complex Times by Ida
  • PDF Frenzy 60 Stories of Sudden Sex by Alison Tyler
  • The King Arthur Baking Company Big Book of Bread 125 Recipes for Every Baker A Cookbook by King Arth
  • PDF Download Three Seconds of Courage How Small Acts of Bravery Lead to Big Change by Riley Kehoe
  • Download PDF A New Science of Heaven How the new science of plasma physics is shedding light on spir
  • PDF EPUB Download Basic and Clinical Pharmacology 15e by Bertram G. Katzung Anthony J. Trevor Full
  • PDF Download The Killings at Kingfisher Hill The New Hercule Poirot Mystery by Sophie Hannah
  • Download Pdf Moon Cape Cod Marthas Vineyard Nantucket Best Beaches Coastal Towns Clambakes Lobs
  • Download Pdf Warring Tides by Mk Ahearn
  • 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
Previous
Download Pdf Warring Tides by Mk Ahearn
Next
Add a new pet to the store
Built with