My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Online Read Ebook All Fours by Miranda July
  • PHP MySQL Server-side Web Development by on Ipad
  • Read pdf Rental House A Novel by Weike Wang
  • The Kings Weapon by Neena Laskowski on Iphone New Format
  • PDF Asterix Omnibus Vol. 13 by Jean-Yves Ferri Didier Conrad
  • Pdf ePub Kingdom Keepers Inheritance The Final Draw Kingdom Keepers Inheritance Book 3 by Ridley Pe
  • Online Read Ebook Game Theory Understanding the Mathematics of Life by Brian Clegg
  • PDF The Wok Recipes and Techniques by J. Kenji Lopez-Alt
  • Online Read Ebook Haiku Americana by Lawrence Eyre
  • Read online Lastman Book 6 by Balak Michaïl Sanlaville Bastien Vives
  • download pdf Done and Dusted A Rebel Blue Ranch Novel by Lyla Sage
  • Pdf ePub Anathema Legacy by Nick Roberts download ebook
  • PDF Download Missed Connections by Justin Deubel
  • download pdf From Trenton to Yorktown Turning Points of the Revolutionary War by John R. Maass
  • pdf download Opening Repertoire - The Jobava System by Simon Williams
  • Read pdf Bold Beans recipes to get your pulse racing by Amelia Christie-Miller
  • Online Read Ebook Open Season by Jonathan Kellerman
  • Read Pdf The Problem of Life How to Find Identity Purpose and Joy in a Disenchanted World by Mar
  • Read online Pokémon Timelines A Journey Through the Animated Series by Katherine Andreou Glenn Daki
  • Download Pdf The Art of Immersive Storytelling Strategies From the Gaming World by Margaret Kerrison
  • Games Untold by Jennifer Lynn Barnes on Audiobook New
  • DOWNLOAD PDF EPUB Titans Vol. 2 The Dark-Winged Queen by Tom Taylor Lucas Meyer
  • PDF Omniscient Readers Viewpoint Vol. 1 by Sleepy-C UMI
  • Online Read Ebook The Promise She Made An utterly heartbreaking and gripping World War 2 historical
  • PDF All Is Found A Frozen Anthology by Disney Books
  • PDF EPUB Download Ruthless Render Volume 2 by dd markk Full Book
  • Freshman Year A Graphic Novel by Sarah Mai on Ipad
  • PDF Kindle Operation Reunion A Murder Mystery Book by Justine Davis
  • Iron Flame by Rebecca Yarros on Iphone New Format
  • PDF MARVEL MASTERWORKS THE INVINCIBLE IRON MAN VOL. 18 by Dennis ONeil Marvel Various Luke McDonn
  • The Queens of Crime A Novel by Marie Benedict on Audiobook New
  • PDF Kindle The Books of The Minor Prophets The Twelve The Passion Translation by Brian Simmons
  • Desafiante Defiant by Brandon Sanderson on Iphone New Format
  • Read online Kill Switch Devils Night 3 by Penelope Douglas
  • Read online Massive by John Trefry
  • 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-15 11:12:30
Previous
Read online Massive by John Trefry
Next
Add a new pet to the store
Built with