My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Beyond Darning Creative mending techniques by Hikaru Noguchi on Iphone New Format
  • My Instant Death Ability Is So Overpowered No One in This Other World Stands a Chance Against Me V
  • epub download Red Team Blues A Martin Hench Novel by Cory Doctorow
  • Download Pdf Mothmeister Sinister and Spiritual Post-Mortem Fairy Tales by Mothmeister
  • Read online When Things Dont Go Your Way Zen Wisdom for Difficult Times by Haemin Sunim Charles La
  • PDF EPUB Download Dinosaurium Poster Book by Lily Murray Chris Wormell Full Book
  • PDF Kindle Vow of Thieves by Mary E. Pearson
  • Read pdf Moments at Home Interior Inspiration for Every Room by Steve Cordony
  • PDF DOWNLOAD Birthday Girl by Penelope Douglas on Iphone
  • download pdf Un lugar feliz by Emily Henry
  • Read online Harlequin Heartwarming March 2025 Box Set A Clean and Uplifting Romance by Alexis Morgan
  • epub download Mostly What God Does is Love You by Savannah Guthrie Morgan Huff
  • Read pdf Projections A Novel by S. E. Porter
  • Read online To Sicily with Love by Jennifer Probst
  • PDF Download Cosmic Chemistry Do God and Science Mix by John C Lennox
  • Read pdf Zatanna The Ripper Volume Two by Sarah Dealy Syro
  • epub download Eleven Madison Park The Plant-Based Chapter A Cookbook by Daniel Humm
  • epub download An Anthology of Aquatic Life by Sam Hume
  • PDF Download Death by Deception by Tracy Gardner
  • Read online Power and Terror Conflict Hegemony and the Rule of Force by Noam Chomsky John Junkerm
  • Palestine and Israel Understanding Encounters by Max L Carter on Iphone New Format
  • download pdf How We Sold Our Future The Failure to Fight Climate Change by Jens Beckert Ray Cunnin
  • epub download Shangri-La Frontier 15 by Ryosuke Fuji Katarina
  • Online Read Ebook All Fours by Miranda July
  • DOWNLOAD PDF EPUB His Cinderella Next Door by Cara Colter
  • epub download Insatiable The Edge of Darkness Book 1 by Leigh Rivers
  • DOWNLOAD PDF EPUB No-Sew Mini Amigurumi 40 Crochet Patterns for Super Cute Super Small Plushies b
  • Download Pdf The Short Victorious War by David Weber
  • PDF Kindle Contrast in Crewel Embroidery Modern designs stitched on light and dark by Tatiana Popov
  • PDF EPUB Download The Vikings Bride by Darlene Mindrup Full Book
  • Read pdf Caging Skies A Novel by Christine Leunens
  • The Perfect Mismatch A Novel by Debbie Macomber on Audiobook New
  • PDF Download The Hundred Thousand Sons of St Louis The French Campaign in Spain April to October 1
  • download pdf Claiming His Brothers Baby by Helen Lacey
  • PDF Harry Potter and the Prisoner of Azkaban MinaLima Edition by J. K. Rowling MinaLima Design
  • Download Pdf Were Pregnant The First Time Dads Pregnancy Handbook by Adrian Kulp
  • Melt With You by Jennifer Dugan on Ipad
  • PDF Kindle The Plague by Albert Camus Laura Marris
  • PDF EPUB Download Black Legion by Aaron Dembski-Bowden Full Book
  • Star Wars Tempest Runner The High Republic by Cavan Scott on Iphone New Format
  • Download PDF Wren Martin Ruins It All by Amanda DeWitt
  • Download PDF Why We Remember Unlocking Memorys Power to Hold on to What Matters by Charan Ranganath
  • 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 Why We Remember Unlocking Memorys Power to Hold on to What Matters by Charan Ranganath
Next
Add a new pet to the store
Built with