My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF [Download] Warring Tides by Mk Ahearn
  • {pdf download} Last Twilight in Paris: A Novel by Pam Jenoff
  • PDF [DOWNLOAD] Bismillah, Let's Eat!: Fresh and Vibrant Recipes from my Family to Yours by Zehra Allibhai on Iphone
  • [download pdf] A Practical Guide to Digital Forensics Investigations / Edition 2 by Darren Hayes
  • [PDF] Barbarian's Taming by Ruby Dixon
  • The Cannibal Owl by Aaron Gwyn on Ipad
  • [PDF, EPUB] Download Only One Touch: Heiße Friends-to-Lovers Eishockey Romance by Natasha Madison, Stephan Bellem Full Book
  • Robert Hooke's Experimental Philosophy by Felicity Henderson on Iphone New Format
  • The Fix: How the Twelve Steps Offer a Surprising Path of Transformation for the Well-Adjusted, the Down-and-Out, and Everyone In Between by Ian Morgan Cron on Audiobook New
  • Read [Pdf]> Harry Potter: The Blueprints by Insight Editions, Jody Revenson
  • [PDF] Prince Freya, Vol. 11 by Keiko Ishihara
  • [PDF] Ninja Vs. Gokudo 3 by Shinsuke Kondo
  • PDF [DOWNLOAD] Queer by William S. Burroughs on Iphone
  • [PDF, EPUB] Download The Pumpkin Spice Café (Dream Harbor, Book 1) by Laurie Gilmore Full Book
  • Read online: The Magical Revolution of the Reincarnated Princess and the Genius Young Lady, Vol. 6 (novel) by Piero Karasu, Harutsugu Nadaka, Yuri Kisaragi, Haydn Trowell
  • [PDF, EPUB] Download Harry Potter: The Blueprints by Insight Editions, Jody Revenson Full Book
  • {pdf download} The House on the Strand by Daphne du Maurier
  • PDF/EPUB Download A Spell for Heartsickness: A Cozy Romantasy by Alistair Reeves Full Book
  • PDF/EPUB Download Gettysburg: The Tide Turns: An Oral History by Bruce Chadwick Full Book
  • Read online: No Better Than Beasts by Z. R. Ellor
  • [PDF/Kindle] Camp Jeff by Tova Reich
  • DOWNLOADS Stockholm Syndrome Christianity: Why America's Christian Leaders Are Failing - and What We Can Do About It by John G West
  • {epub download} The Official Agatha Christie Puzzle Book: Put your detective skills to the ultimate test by Agatha Christie Agatha Christie Ltd
  • Read [Pdf]> Who Are We Now? by Blaise Aguera y Arcas
  • {epub download} Zilbagias the Demon Prince: How the Seventh Prince Brought Down the Kingdom Volume 3 by Tomoaki Amagi, Tsukasa Kiryu
  • [download pdf] David Busch's Sony Alpha a6700/ILCE-6700 Guide to Digital Photography by David D. Busch
  • PDF [Download] Make Your Own Job: How the Entrepreneurial Work Ethic Exhausted America by Erik Baker
  • DOWNLOAD [PDF] {EPUB} City Spies (Spanish Edition) by James Ponti
  • Read online: An Honored Vow by Melissa Blair
  • Online Read Ebook Tickle Spider: Fingerplay for young children by Gaylene Wiseman
  • 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-03 12:10:55
Previous
Online Read Ebook Tickle Spider: Fingerplay for young children by Gaylene Wiseman
Next
Add a new pet to the store
Built with