My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • download pdf Symbols of the Occult by Eric Chaline
  • Never Lie by Freida McFadden on Iphone New Format
  • DOWNLOAD PDF EPUB Wolf Marshalls Jazz Guitar Course Mastering the Jazz Language - Book with Over 6
  • epub download Be Kind My Neighbor by Yugo Limbo
  • A Guide Book of United States Coins 2026 Official Red Book by R S Yeoman John Feigenbaum Jeff Garr
  • Beneath Dark Waters by Karen Rose on Ipad
  • Download Pdf Iron Flame by Rebecca Yarros
  • PDF DOWNLOAD The Art and Making of Ultraman Rising by Drew Taylor on Iphone
  • PDF EPUB Download The Art of Final Fantasy XVI by Square Enix Full Book
  • epub download The Devils Charm by Megan Frampton
  • PDF Out of the Cocoon The Journey to Becoming by Rosemary Esehagu
  • Read pdf The Crimson Road by A.G. Slatter
  • PDF DOWNLOAD The Last Colony An Old Mans War Novel by John Scalzi on Iphone
  • Pathfinder RPG Treasure Vault P2 by Michael Sayre Mark Seifter Kendra Leigh Speedling Logan Bonne
  • PDF Download Archetypal Astrology Oracle A 55-Card Deck and Guidebook by Jonathan Waller
  • DOWNLOADS Island Vegan 75 Flavorful Recipes from the Caribbean Jamaica Trinidad Haiti Dominican R
  • Download Pdf The Spirit of Hope by Byung-Chul Han Daniel Steuer
  • Pdf ePub The Dragonet Prophecy Limited Edition Wings of Fire Book One by Tui T. Sutherland download
  • PDF Kindle Bellas Journey by Victoria A Farias Lucia Benito
  • download pdf Family of Convenience by Victoria Austin
  • Read pdf The Capitalist Manifesto by Johan Norberg
  • PDF Wicked Pursuit Divine Intervention Deluxe Edition by Katee Robert R.M. Virtues
  • PDF EPUB Download The New Kingdom The New Kingdom by Wilbur Smith Full Book
  • Download Pdf Sweet Crochet Friends 16 Amigurumi Creations from Khuc Cay by Hoang Thi Ngoc Anh
  • epub download A Fire in the Flesh by Jennifer L. Armentrout
  • Birthday Party Demon by Wendy Dalrymple on Iphone New Format
  • One-Night Crush by Mia Heintzelman on Iphone New Format
  • PDF Kindle Cher Part One The Memoir by Cher
  • Read online Bonds of Hercules by Jasmine Mas
  • Lore Olympus The Official Coloring Book by Rachel Smythe on Audiobook New
  • Pdf ePub The Cul-de-sac by Christopher Null download ebook
  • epub download War by Louis-Ferdinand Céline Charlotte Mandell
  • PDF EPUB Download Climatic Architecture Philippe Rahm architectes by Philippe Rahm Full Book
  • PDF Under the Oak Tarot Deck by Stregadellemele Ofride
  • PDF Kindle The 5-Minute Gardener Year-Round Garden Habits for Busy People by Nicole Johnsey Burke
  • Read Pdf Cast Aoi by Torajirou Sanagi
  • PDF DOWNLOAD Big Nate This Means War by Lincoln Peirce on Iphone
  • PDF Kindle Star Wars The Secrets of the Wookiees by Marc Sumerak Alberto Buscicchio
  • 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-09 00:42:55
Previous
PDF Kindle Star Wars The Secrets of the Wookiees by Marc Sumerak Alberto Buscicchio
Next
Add a new pet to the store
Built with