My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download The Lost Deer Queen by H J Nichols Full Book
  • Read Pdf Bucks Workbook for Step-by-Step Medical Coding 2024 Edition by Elsevier
  • God of Pain Special Edition Print by Rina Kent on Audiobook New
  • PDF EPUB Download The 1619 Project A New Origin Story by Nikole Hannah-Jones The New York Times Mag
  • PDF Download Tomb Raider The Official Cookbook and Travel Guide by Sebastian Haley Tara Theoharis
  • Read Pdf Tom Clancys The Division Hunted An Operation Crossroads Novel by Thomas Parrott
  • download pdf El Pozo de la Ascensión Nacidos de la Bruma-Mistborn edición ilustrada 2 by Brandon
  • PDF EPUB Download DC Finest Harley Quinn Birth of the Mirth by Paul Dini Bruce Timm Karl Kesel Ful
  • DOWNLOADS Magical Love A Romantasy Coloring Book Ethereal Romantic Fantasy Scenes to Color by Echo C
  • Read online Greeks Convenient Cinderella A Steamy Marriage of Convenience Story by Lynne Graham
  • PDF Download Deep Resilience A four-step journey to unshakable inner strength by Melli OBrien
  • download pdf Relatos de la noche Tales of the Night by Uriel Reyes
  • Read Pdf The Emperors Sword by Christian Cameron
  • PDF Kindle Name Her Holy by Aubrey Ennis
  • pdf download Killing Me Soufflé A Bakeshop Mystery by Ellie Alexander
  • Smart Girl A First-Gen Origin Story by Latonya Rease Miles on Iphone New Format
  • Pdf ePub Family of Her Dreams by Keli Gwyn download ebook
  • Pony Express Courtship and The Express Riders Lady by Rhonda Gibson Stacy Henrie on Iphone New Form
  • pdf download Defeating the Giant A Guide to Recognizing and Healing from Narcissistic Abuse by Rosan
  • Nadie puede salvarte excepto tú. El libro para confiar en ti misma No One Can Save You Except Your
  • download pdf Her Tycoon to Tame by Emilie Rose
  • epub download The End of the Moment We Had by Toshiki Okada Samuel Malissa
  • Pink-pilled Women and the far right by Lois Shearing on Audiobook New
  • Read Pdf A Path to Forgiveness by Carrie Lighte Vannetta Chapman
  • Read pdf Knucklehead Poems by Tony Keith Jr.
  • PDF Snarky Sharky by Bethan Clarke Nikolas Ilic
  • Read Pdf The Big Book of Pussy by Dian Hanson
  • The MILEPOST 2023 Alaska Travel Planner by Milepost on Audiobook New
  • PDF EPUB Download The Cursed Writer by Holly Hepburn Full Book
  • download pdf On the Art and Craft of Doing Science by Kenneth Catania
  • PDF Kindle The Things Gods Break Deluxe Limited Edition by Abigail Owen
  • Online Read Ebook Toiveiden lapset by Danielle Steel Kaisa Luntinen
  • I Got Reincarnated in a BL World of Big Man Boobs 1 by Tsukiji Nao on Audiobook New
  • Online Read Ebook Fitzpatricks Color Atlas and Synopsis of Clinical Dermatology Ninth Edition by El
  • Download PDF Murder of an Oxford Scientist A gripping and unputdownable cozy Golden Age murder myste
  • Read pdf Detroit Become Human -Tokyo Stories- Vol. 2 manga by Quantic Quantic Dream John Neal
  • pdf download My Best Friend is an Eldritch Horror Light Novel Vol. 1 by ACTUS Kisaragipana Adrian
  • DOWNLOAD PDF EPUB Medieval Syria and the Onset of the Crusades The Political World of Bilad al-Sha
  • PDF EPUB Download Self-Portrait in the Studio by Giorgio Agamben Kevin Attell Full Book
  • pdf download Poo Pile on the Prairie by Amy Hevron
  • Download PDF My Name Was Eden A Novel by Eleanor Barker-White
  • Read Pdf The Kodansha Kanji Learners Dictionary Revised and Expanded 2nd Edition by Jack Halpern
  • Read Pdf Winx Club 3 in 1 Vol. 1 by Rainbow S.p.A.
  • Download Pdf Magic Stone Gourmet Eating Magical Power Made Me the Strongest Volume 8 Light Novel by
  • Online Read Ebook The National Telepathy by Roque Larraquy Frank Wynne
  • Pdf ePub The Quilt Binding Bible 25 Flawless Finishes Techniques Troubleshooting by Marci Baker do
  • download pdf Gertrude Abercrombie The Whole World Is a Mystery by Gertrude Abercrombie Eric Crosby
  • Read online Dont Call Me Daddy by Jerï Anthony
  • PDF Download Yoga by Emmanuel Carrère John Lambert
  • DOWNLOADS Imitation Vol. 5 by KyungRan Park
  • 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
DOWNLOADS Imitation Vol. 5 by KyungRan Park
Next
Add a new pet to the store
Built with