My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOADS All Our Tomorrows by Amy DeBellis
  • epub download The Let Them Theory A Life-Changing Tool That Millions of People Cant Stop Talking Abo
  • Read online Morphology A Distributed Morphology Introduction by Jeffrey P. Punske
  • PDF Kindle Dr. John Dees Spiritual Diary 1583-1608 Second Edition by Stephen Skinner
  • PDF DOWNLOAD The Combination Of Stellar Influences by Reinhold Ebertin on Iphone
  • Online Read Ebook Pesadilla en Navidad by Tessa Bailey
  • PDF Kindle Data Visualization with Microsoft Power BI by Alex Kolokolov Maxim Zelensky
  • Read pdf Keeping 13 by Chloe Walsh
  • Download PDF Rescuing the Runaway Bride by Bonnie Navarro
  • DOWNLOAD PDF EPUB Analysis through Action for Actors and Directors From Stanislavsky to Contempora
  • Pdf ePub The Cat Who Saved Books A Novel by download ebook
  • epub download The Outlaws Second Chance by Angie Dicken
  • Online Read Ebook A Beautiful Second Act Saints and Soul Sisters Who Taught Me to Be a Badass Age wi
  • Online Read Ebook Grandmaster of Demonic Cultivation Mo Dao Zu Shi Manhua Vol. 4 by Mo Xiang Tong X
  • pdf download Unicornia A Magical Birthday by Ana Punset Diana Vicedo
  • Renouncing The Mob by Derek Alan on Iphone New Format
  • Killer in Shellview County by R. Barri Flowers on Iphone New Format
  • Swordheart by T. Kingfisher on Ipad
  • Read pdf SCARLET WITCH BY STEVE ORLANDO VOL. 4 QUEEN OF CHAOS by Steve Orlando Jacopo Camagni Ru
  • Romanticize Your Life 365 Simple Ways to Embrace the Beauty of Every Day by Harper Celebrate on Ipad
  • Read online Acting Class by Nick Drnaso
  • Download PDF Milky Way by Muriel Jensen
  • Read online The Ripple Effect by Rebecca Caprara
  • Download Pdf Hands-On Large Language Models Language Understanding and Generation by Jay Alammar Ma
  • PDF EPUB Download Anxious People by Fredrik Backman Full Book
  • PDF EPUB Download The DOSE Effect Optimize Your Brain and Body by Boosting Your Dopamine Oxytocin
  • epub download Gain of Function by Nicholas G. Evans
  • Jane Eyre Movie Tie-in Edition by Charlotte Brontë on Iphone New Format
  • PDF Kindle Get Better at Anything 12 Maxims for Mastery by Scott H. Young
  • Hideaway Devils Night 2 by Penelope Douglas on Audiobook New
  • PDF Download Post-work What It Is Why It Matters and How We Get There by Helen Hester Will Stron
  • epub download By the Grace of the Gods Volume 15 Light Novel by Roy Ririnra Adam Seacord
  • Spark of the Everflame A Novel by Penn Cole on Ipad
  • DOWNLOADS Leave the Sacrifice at the Gate by Susu Katoh
  • PDF A Rumored Engagement by Lily George
  • Pdf ePub Harlequin Intrigue March 2025 - Box Set 2 of 2 by Nicole Helm Maggie Wells Janice Kay Jo
  • Read Pdf The House at Pooh Corner Classic Gift Edition by A. A. Milne E. H. Shepard
  • DOWNLOADS Jeramiahs Power by Betsy Rose Wells Felipe Echevarria
  • Formula 2 The glory years 1967-84 by Jutta Fausel Chris Witty Jacky Ickx on Iphone New Format
  • PDF EPUB Download Neurodiversity For Dummies by John Marble Khushboo Chabria Ranga Jayaraman Ful
  • PDF Download House of Crimson Curses A Steamy Vampire Fantasy Romance by Ruby Roe
  • epub download Disappointing Affirmations by Dave Tarnowski
  • Read pdf After School Etude Vol. 2 by Hirune Cyan
  • DOWNLOAD PDF EPUB On Thin Ice by Jessica Kim
  • PDF Tracking the Truth by Sarah Varland Sharee Stover
  • PDF Briar Vol. 2 by Christopher Cantwell Alex Lins
  • PDF EPUB Download The Cat Who Cracked a Cold Case by L T Shearer Full Book
  • pdf download Out of Darkness by Alex Gray
  • epub download A Cold Dose of Murder by Emily George
  • epub download Daily Lessons to be studied during the month of Ramadan by Abd-al-aziz Ibn Abdullah Al
  • 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
epub download Daily Lessons to be studied during the month of Ramadan by Abd-al-aziz Ibn Abdullah Al
Next
Add a new pet to the store
Built with