My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Save the Pearl Tales of the Teenage Mutant Ninja Turtles by Matt Huntley Nate Lovett
  • The Last One Out of Town Turn Out the Lights The Epic 1975 Foxcroft Academy Basketball Season by Dav
  • DOWNLOADS An Island of Suspects A Brittany Mystery by Jean-Luc Bannalec
  • Online Read Ebook What I Mean to Say Remaking Conversation in Our Time by Ian Williams
  • PDF Texas Cinderella and Would-Be Wilderness Wife by Winnie Griggs Regina Scott
  • Download Pdf The Witches Wisdom Tarot Deluxe Keepsake Edition A 78-Card Deck and Guidebook by Phylli
  • PDF DOWNLOAD The Ghosts of Rome The Rome Escape Line Trilogy 2 by Joseph OConnor on Iphone
  • Read Pdf Ambessa Chosen of the Wolf A League of Legends Arcane Novel by C. L. Clark
  • PDF Kindle Her Holiday Protector and Holiday on the Run by Lenora Worth Laura Scott
  • Download Pdf Murder in an Irish Garden by Carlene OConnor
  • Download PDF DD Monster Manual 2024 by Wizards of the Coast
  • PDF EPUB Download Dream State A Novel by Eric Puchner Full Book
  • PDF DOWNLOAD Deep Cuts A Novel by Holly Brickley on Iphone
  • PDF EPUB Download Lovers Touch and A Deal with Demakis by Penny Jordan Tara Pammi Full Book
  • DOWNLOAD PDF EPUB When God Made You Jamirs Story Meet Jamir Gods Chosen One by Tawanda Jupiter
  • PDF Kindle Goodbye to Boyhood A Collection of Stories by Spencer Thomas
  • Read pdf Mythic Plants Potions and Poisons from the Gardens of the Gods by Ellen Zachos
  • pdf download Wings of Starlight by Allison Saft
  • Fly Me to the Moon Vol. 27 by Kenjiro Hata on Ipad
  • download pdf Almost Sunset by Wahab Algarmi
  • Sins Poison of the Heart by Haifaa Younis on Audiobook New
  • Pdf ePub Blood Of My Heart by Ariel Dawn download ebook
  • PDF Kindle Her Holiday Lawman by Ruth Logan Herne Mindy Obenhaus
  • PDF EPUB Download My Possessive Alpha Twins For Mate by Veejay Full Book
  • download pdf Toxic Productivity Reclaim Your Time and Emotional Energy in a World That Always Deman
  • Pdf ePub The Secret of The Fishing Box A reincarnation Mystery Across Lifetimes by Cleunir De Arauj
  • Read Pdf Handbook of Tyranny by Theo Deutinger
  • PDF EPUB Download A World of Patterns 100 Vibrant Postcards by Christine Chitnis Full Book
  • Pdf ePub A Slash of Emerald by Patrice McDonough download ebook
  • epub download The Vulnerables A Novel by Sigrid Nunez
  • epub download Swordheart by T. Kingfisher
  • Download PDF Thriving Together Nine Principles for Cocreating True Community by David Viafora Siste
  • Download PDF Witch Life in a Micro Room Vol. 4 by Akitaka Abby Lehrke
  • epub download Ilium A Novel by Lea Carpenter
  • Read Pdf The Boy Who Ruled the Monsters Volume 2 by Sin Guilty NAKAMURA 8 Kamishiro Taishi
  • 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-12 23:07:10
Previous
Read Pdf The Boy Who Ruled the Monsters Volume 2 by Sin Guilty NAKAMURA 8 Kamishiro Taishi
Next
Add a new pet to the store
Built with