My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download How to Draw Super Cute Things with Bobbie Goods Learn to draw color absolutely
  • PDF EPUB Download Headshot A Novel by Rita Bullwinkel Full Book
  • Read pdf Internal Family Systems Therapy Second Edition by Richard C. Schwartz PhD Martha Sweezy
  • DOWNLOAD PDF EPUB The Fast 800 Treats Recipe Book Healthy and delicious bakes savoury snacks and
  • Pdf ePub Sketching from the Imagination Anime Manga by Publishing 3dtotal download ebook
  • Download Pdf Falling for the Single Dad by Lisa Carter
  • PDF EPUB Download Who Owns This Sentence A History of Copyrights and Wrongs by David Bellos Alexand
  • DOWNLOADS The Wedding People A Novel by Alison Espach
  • Harlequin Intrigue March 2025 - Box Set 1 of 2 by B. J. Daniels Julie Miller R. Barri Flowers on I
  • PDF DOWNLOAD My Noisy Roommate The Roof Over My Head Comes With Monsters and a Hottie 2 by Kaho Oz
  • Pdf ePub Sun Bird The Amazing Journey of the Arctic Tern by Lindsay Moore download ebook
  • PDF Andres Valencia Painting Without Rules by Andres Valencia Alexander M. Rigby
  • Gannibal Vol 3 by Masaaki Ninomiya on Iphone New Format
  • epub download The Lucky Ones A Memoir by Zara Chowdhary
  • PDF EPUB Download Harlequin Presents March 2025 - Box Set 2 of 2 by Jackie Ashenden Julia James
  • pdf download Self-Care for Winter Seven steps to thriving in the colder months by Suzy Reading
  • DOWNLOAD PDF EPUB J.K. Lassers Your Income Tax 2025 Professional Edition by J.K. Lasser Institute
  • Read pdf The Destruction of Palestine Is the Destruction of the Earth by Andreas Malm
  • PDF EPUB Download The Official Dopamine Nation Workbook A Practical Guide to Finding Balance in th
  • Read pdf Lobster and other things Im learning to love by Hollie McNish
  • Pdf ePub This Is Strategy Make Better Plans by Seth Godin download ebook
  • PDF Kindle The Kabbalistic Tree by J. H. Chajes
  • Tailspin by John Armbruster on Iphone New Format
  • His Best Friends Girl by Christine Rimmer on Audiobook New
  • Download PDF Check Mate by Ali Hazelwood
  • DOWNLOAD PDF EPUB The Sun of Knowledge Shams al-Maarif An Arabic Grimoire in Selected Translation
  • PDF Download The Dark Mirror by Samantha Shannon
  • PDF DOWNLOAD I May Be a Guild Receptionist but Ill Solo Any Boss to Clock Out on Time Vol. 4 lig
  • Read online A Ghost of Caribou A Novel of Suspense by Alice Henderson
  • Today Tonight Tomorrow by Rachel Lynn Solomon on Ipad
  • Download Pdf La rosa de Hereford by Brenna Watson
  • PDF Young Bucks Killing the Business from Backyards to the Big Leagues by
  • PDF Beasts of Burden Omnibus by Evan Dorkin Jill Thompson Benjamin Dewey
  • Download Pdf His Unexpected Baby Blessing An Uplifting Inspirational Romance by Julie Brookman
  • Read pdf Sounds Like Love by Ashley Poston
  • Tryst Six Venom by Penelope Douglas on Audiobook New
  • PDF Redeeming 6 Spanish Edition by Chloe Walsh
  • PDF EPUB Download The Order of the Circle by Levi Cory Anna Kubik Elisabeth Mkheidze Full Book
  • DOWNLOADS Chain Gang All Stars A Novel by Nana Kwame Adjei-Brenyah
  • Download PDF Baby Let It Snow by Beverly Jenkins Elaine Overton
  • Online Read Ebook Babel Vol. 3 by Kuji Furumiya Haruyuki Morisawa Amelia Imogen
  • PDF Kindle A Family With the Cowboy by Elsa Winckler
  • DOWNLOAD PDF EPUB Air-Borne The Hidden History of the Life We Breathe by Carl Zimmer
  • Trial by Fire A Novel by Danielle Steel on Iphone New Format
  • DOWNLOAD PDF EPUB Disney Cinderella Pop-Up Book by Matthew Reinhart Boyk Purdue
  • PDF DOWNLOAD A New Beginning by Charles Lynn Russell on Iphone
  • pdf download Living Design The Writings of Clara Porset by Clara Porset Zoë Ryan Valentina Sarmien
  • Read online Sacred Sites. The Library of Esoterica by Jessica Hundley
  • Read online A través de ti Through You by Ariana Godoy
  • Download PDF Say Youll Remember Me by Abby Jimenez
  • 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 00:47:45
Previous
Download PDF Say Youll Remember Me by Abby Jimenez
Next
Add a new pet to the store
Built with