My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOAD PDF EPUB And the Chicken Bawkd A story about finding your unique by Randy Mott Lynde Mot
  • Beetlejuice Tarot Deck Guide by Casey Gilly Abigail Larson on Iphone New Format
  • Download PDF The Fox and the Falcon Deluxe Edition by Piper CJ
  • The Amish Marriage Bargain and Finding Her Amish Love by Marie E. Bast Rebecca Kertz on Audiobook N
  • DOWNLOADS First Aid for Broken Hearts Tarot Compassionate Insight for Solace and Guidance through He
  • PDF EPUB Download Llamame por tu nombre Call Me by Your Name by Andre Aciman Full Book
  • Read online Enemy Feminisms TERFs Policewomen and Girlbosses Against Liberation by Sophie Lewis
  • PDF EPUB Download The Art of Lies of P by NEOWIZ ROUND8 Studio Full Book
  • DOWNLOAD PDF EPUB Make-Believe Beau by Keli Gwyn
  • Pdf ePub The Amish Spinsters Courtship and Her New Amish Family by Emma Miller Carrie Lighte downl
  • DOWNLOADS Lincolns Last Card The Emancipation Proclamation as a Case of Command by Richard J. Ellis
  • Online Read Ebook To Slip the Bonds of Earth A Riveting Mystery Based on a True History by Amanda Fl
  • Read pdf Sword of the Demon Hunter Kijin Gentosho Light Novel Vol. 8 by Motoo Nakanishi
  • Read pdf When Rivers Dance Like Promises Book 1 - 2nd Edition by Nekesa Sepiwe
  • Download Pdf The ASAM Principles of Addiction Medicine by Shannon C. Miller MD DFASAM DLFAPA Rich
  • PDF Kindle My Woman His Wife 20 Year Anniversary Edition by Anna J.
  • Pdf ePub Wars of the Anunnaki Nuclear Self-Destruction in Ancient Sumer by Chris H. Hardy download
  • Read pdf Talk The Science of Conversation and the Art of Being Ourselves by Alison Wood Brooks
  • PDF EPUB Download Monster High Ever After High The Legend of Shadow High by Shannon Hale Dean Hale
  • DOWNLOAD PDF EPUB Disenchantment Untold Tales Vol.2 by Matt Groening
  • PDF EPUB Download FATELESS by Lindy Montgomery Full Book
  • PDF EPUB Download Caspar David Friedrich The Soul of Nature by Alison Hokanson Joanna Seidenstein
  • PDF EPUB Download First Test Graphic Novel A Graphic Novel by Tamora Pierce Becca Farrow Full Book
  • epub download labyrinthine self by Nicole Mello
  • DOWNLOAD PDF EPUB Just Beyond the Light Making Peace with the Wars Inside Our Head by D. Randall B
  • pdf download Pokémon The Official Sticker Book of the Kanto Region The Original 151 by Pikachu Press
  • PDF EPUB Download Revenge Meghan Harry and the War Between the Windsors by Tom Bower Full Book
  • Read online London Uncanny A Gothic Guide to the Capital in Weird History and Fiction by Clive Bloom
  • Plan Red Chinas Project to Destroy America by Gordon G. Chang on Audiobook New
  • pdf download Science of Arms The Art of War in the Century of the Soldier 1672 - 1699 Volume 2 - The
  • Pdf ePub The Valiant Must Fall Vol. 4 by Yu Aida download ebook
  • download pdf Immortal by Sue Lynn Tan
  • Stay By My Side After the Rain Vol. 3 by Shoko Rakuta on Ipad
  • Read Pdf The Ballad of Songbirds and Snakes A Hunger Games Novel by Suzanne Collins
  • DOWNLOADS Cuando no queden más estrellas que contar by María Martínez
  • DOWNLOADS Mostly What God Does is Love You by Savannah Guthrie Morgan Huff
  • Read Pdf Dark Matter Evidence Theory and Constraints by David J. E. Marsh David Ellis Viraf M.
  • download pdf Loved to Life A 40-Day Pilgrimage with Love Himself That Will Change Your Life by Ann
  • pdf download Inspired By Nature Designing botanical characters by 3dtotal Publishing
  • Online Read Ebook Handyman Saitou in Another World Vol. 6 by Ichitomo Kazutomo Sheldon Drzka
  • pdf download An Island of Suspects A Brittany Mystery by Jean-Luc Bannalec
  • Read Pdf The Way Out A Revolutionary Scientifically Proven Approach to Healing Chronic Pain by Al
  • Read pdf Only You Can Love Me by Carolyn Miller
  • Download Pdf Pokémon Scarlet Violet Vol. 1 by Hidenori Kusaka Satoshi Yamamoto
  • download pdf The Librarianist by Patrick deWitt
  • Pdf ePub Show Dont Tell Stories by Curtis Sittenfeld download ebook
  • DOWNLOAD PDF EPUB Fate Breaker by Victoria Aveyard
  • Read online Under the Eye of the Big Bird A Novel by Hiromi Kawakami Asa Yoneda
  • epub download Dial M for Ménage by Emily Ryan-Davis
  • DOWNLOAD PDF EPUB PHP MySQL Server-side Web Development by
  • 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-08 21:03:25
Previous
DOWNLOAD PDF EPUB PHP MySQL Server-side Web Development by
Next
Add a new pet to the store
Built with