My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • pdf download Kharn Eater of Worlds by Anthony Reynolds
  • PDF Download La vida breve Edición conmemorativa de la RAE y la ASALE A Brief Life by Juan Carlo
  • Download Pdf March of Crimes by Jess Lourey
  • pdf download The Wrong Dog by Carol Lea Benjamin
  • Online Read Ebook The In-Between Bookstore A Novel by Edward Underhill
  • Pdf ePub Emily Wildes Encyclopaedia of Faeries Emily Wilde by Heather Fawcett download ebook
  • VENOM BY AL EWING VOL. 8 VENOM WAR by Al Ewing Torunn Gronbekk Cafu on Audiobook New
  • PDF Download I Cross-Dressed for the IRL Meetup 3 by Kurano
  • Read Pdf Hills of Shivers and Shadows by Pam Godwin
  • Download PDF A Sky Full of Kites A Rewilding Story by Tom Bowser
  • pdf download When I Arrived at the Castle by E.M. Carroll
  • PDF EPUB Download Justice Bites A Legal Thriller by Laura Snider James Chandler Full Book
  • PDF Download The Violent Take It by Force by Matthew D. Taylor
  • Dip My Brain in Joy A Life with Neil Innes The Official Biography by Yvonne Innes on Ipad
  • PDF EPUB Download Witchcraft for Wayward Girls by Grady Hendrix Full Book
  • Read Pdf Romancing the Schoolteacher by Mary Davis
  • Plain Secrets by Kit Wilkinson on Audiobook New
  • Download Pdf The Disney Villains Cookbook by Disney Books
  • DOWNLOADS Linux Kernel Programming - Second Edition A practical guide to kernel internals writing k
  • PDF DOWNLOAD The Shadows that Listen by Louisa Carmody on Iphone
  • DOWNLOADS Why Its OK to Have Bad Spelling and Grammar by Jessica Flanigan
  • pdf download Hexen 2.0 Tarot by Suzanne Treister
  • PDF Kindle Modern Sourdough Sweet and Savoury Recipes from Margot Bakery by Michelle Eshkeri Patri
  • Read online Pesadilla en Navidad by Tessa Bailey
  • DOWNLOAD PDF EPUB Embracing Beauty Serene Spaces for Living by Beth Webb
  • Online Read Ebook How to Be a Better Drinker Cocktail Recipes and Boozy Etiquette by Hannah Chamberl
  • When Short Stories by Rhonda Baule on Iphone New Format
  • PDF EPUB Download The Temporary Roomie A Novel by Sarah Adams Full Book
  • Read pdf Finding Hayes by Laura Pavlov
  • Download PDF Afterlove by Tanya Byrne
  • epub download NIV Lectio Bible A simple ancient way to read the library of Scripture Cloth over Bo
  • Download PDF Warriors Changing Skies 1 The Elders Quest by Erin Hunter
  • PDF Kindle Colorful Crochet Birds 19 Amigurumi Patterns to Create Feathered Friends by Ilaria Calir
  • PDF EPUB Download The False One By John Fletcher and Philip Massinger by Domenico Lovascio Full Book
  • PDF DOWNLOAD Knife River A Novel by Justine Champine on Iphone
  • PDF EPUB Download Blackmailed into the Marriage Bed by Melanie Milburne Full Book
  • PDF Download Kingdom Keepers Inheritance The Final Draw Kingdom Keepers Inheritance Book 3 by Ridl
  • Read pdf Messengers The Guitars of James Hetfield by James Hetfield
  • PDF EPUB Download Hope The Autobiography by Pope Francis Jorge Mario Bergoglio Carlo Musso Richar
  • PDF Kindle Sneaky Showbiz by Simo Ben
  • Read pdf Skincare Decoded The Practical Guide to Beautiful Skin by Victoria Fu Gloria Lu
  • epub download Natural History of Silence by Jérôme Sueur Helen Morrison
  • pdf download The Five Phases of Mixing by Jermaine sound. Wav Evans
  • Too Tired to Fight 13 Essential Conflicts Parents Must Have to Keep Their Relationship Strong by Eri
  • The Abundant Life Journal A 30-Week Devotional for Mindfulness and Restoration by Anh Lin on Ipad
  • PDF Download A Shining by Jon Fosse Damion Searls
  • PDF DOWNLOAD DD Dungeon Masters Guide 2024 by Wizards of the Coast on Iphone
  • Read pdf Deconstructing Leaving Church Finding Faith by Karla Kamstra
  • Magnolia Parks. Escoge el camino largo Magnolia Parks The Long Way Home by Jessa Hastings on Ipad
  • pdf download How to Get Along with Anyone The Playbook for Predicting and Preventing Conflict at Wor
  • 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-16 00:48:01
Previous
pdf download How to Get Along with Anyone The Playbook for Predicting and Preventing Conflict at Wor
Next
Add a new pet to the store
Built with