My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Darkfever by Karen Marie Moning on Ipad
  • download pdf The Five Phases of Mixing by Jermaine sound. Wav Evans
  • DOWNLOAD PDF EPUB Theory And Problems For Chemistry Olympiad Challenging Concepts In Chemistry by
  • Karnali Blues by Buddhisagar Michael Hutt on Audiobook New
  • Darkfever by Karen Marie Moning on Iphone New Format
  • PDF EPUB Download The Hidden Queen Book Two of The Nightfall Saga by Peter V. Brett Full Book
  • epub download Lightfall Book One of The Everlands by Ed Crocker
  • PDF Kindle The Paradise Problem by Christina Lauren
  • Download Pdf Rez Ball by Byron Graves
  • Pdf ePub No Saint by Donna Alam download ebook
  • download pdf The Information-Literate Historian A Guide to Research for History Students by Jenny L
  • Go as a River by Shelley Read on Ipad
  • PDF Download Wilderness Hostage by Janice Kay Johnson
  • download pdf Beyond Painting by Max Ernst
  • pdf download Cool for the Summer by Dahlia Adler
  • PDF Whotopia The Ultimate Guide to the Whoniverse by Jonathan Morris Simon Guerrier Una McCormack
  • epub download Modern Persian Script Hacking The optimal way to learn the Persian Farsi alphabet by
  • download pdf Nothing Here Worth Dying For Task Force Lion in Iraq by Seth William Bell Folsom
  • epub download The Time-Block Planner A Daily Method for Deep Work in a Distracted World by Cal Newpo
  • Read online The Exile An Outlander Graphic Novel by Diana Gabaldon Hoang Nguyen
  • Online Read Ebook Lonely Planet Experience Andalucia by Anna Kaminski Fiona Flores Watson Isabella
  • Alive in Their Garden The True Story of the Mirabal Sisters and Their Fight for Freedom by Ded Mirab
  • Read Pdf The Vulnerables A Novel by Sigrid Nunez
  • download pdf The Last Guy On Earth by Sarina Bowen
  • download pdf Ghost Roast by Shawneé Gibbs Emily Cannon Shawnelle Gibbs
  • PDF DOWNLOAD The Gilded Cage by Lynette Noni on Iphone
  • Madd Ink by Dani René on Ipad
  • PDF Cuatro veranos by Benito Taibo
  • download pdf Two Weddings and a Murder by Alyssa Maxwell
  • Download Pdf Tears in the Danube by Nadine Nader
  • Read Pdf Los dos hemisferios de Lucca Luccas World by Bárbara Anderson
  • Dinos Love Tractors by Pterry Redwing Christine Sheldon Cottage Door Press on Ipad
  • download pdf Playing Nice A Novel by JP Delaney
  • PDF Keep Me by Sara Cate
  • PDF A Family Found by Laura Abbot
  • Read Pdf Deconstructing Leaving Church Finding Faith by Karla Kamstra
  • 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}
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-15 08:52:55
Previous
Read Pdf Deconstructing Leaving Church Finding Faith by Karla Kamstra
Next
Add a new pet to the store
Built with