- Start your Apidog journey
- Read Pdf The Chess Deck 50 Cards for Mastering the Basics by Levy Rozman
- The Things Gods Break Deluxe Limited Edition by Abigail Owen on Ipad
- Analytic Idealism in a Nutshell A straightforward summary of the 21st centurys only plausible metaph
- Pdf ePub El barco de los muertos Magnus Chase y los dioses de Asgard 3 by Rick Riordan download ebo
- Read pdf Mad Honey by Jodi Picoult Jennifer Finney Boylan
- Download PDF A Certain Scientific Railgun Vol. 19 by Kazuma Kamachi Motoi Fuyukawa
- The Last Guy On Earth by Sarina Bowen on Ipad
- Download PDF Obey Me The Comic Vol. 1 by Subaru Nitou NTT Solmare
- PDF EPUB Download Judo Unleashed The Ultimate Training Bible for Judoka at Every Level Revised and E
- PDF Kindle Wasserman Whipps Principles of Exercise Testing and Interpretation Including Pathophysi
- PDF EPUB Download The Cycle Confronting the Pain of Periods and PMDD by Shalene Gupta Full Book
- Download Pdf Scourge of the Emirates by Peter J. Murray
- Read pdf Wooing the Witch Queen by Stephanie Burgis
- Read pdf A Disaster of Our Own Making How the West Lost Ukraine by Brandon J. Weichert
- DOWNLOAD PDF EPUB Distance A Dark Mafia Romance by Luna Mason
- PDF EPUB Download A Common-Sense Guide to Data Structures and Algorithms Second Edition Level Up
- PDF DOWNLOAD Our Sweet Violet The third book in the Flower Girls collection from Britains best-lov
- DOWNLOADS Yakuza Fiancé Raise wa Tanin ga Ii Vol. 6 by Asuka Konishi
- PDF DOWNLOAD Learning Kali Linux Security Testing Penetration Testing Ethical Hacking by Ric Mes
- PDF EPUB Download Controlling Contagion Epidemics and Institutions from the Black Death to Covid by
- DOWNLOAD PDF EPUB Cholesterol TRUTHS Completely Eliminate Heart Disease by Dr. Mohammed Alo Dr. T
- Read pdf Stranger Things The Dustin Experiment by J.L. DAmato
- PDF EPUB Download Jeramiahs Power by Betsy Rose Wells Felipe Echevarria Full Book
- PDF Kindle Maya Natasha A Novel by Elyse Durham
- Pierced Ink by Dani René on Audiobook New
- PDF EPUB Download Learn WinUI 3 - Second Edition Leverage WinUI and the Windows App SDK to create mo
- epub download Wild Berries by Julie Flett Earl N. Cook
- DOWNLOADS The Insiders Guide to Innovation at Microsoft by Dean Carignan JoAnn Garbin Eric Horvitz
- Read online Murdle Jr. Curious Crimes for Curious Minds Solve Your Way Through 40 Puzzle Mysteries b
- Read online The Red Badge of Courage Collectors Edition Laminated Hardback with Jacket An Episode of
- DOWNLOAD PDF EPUB 2034 A Novel of the Next World War by Elliot Ackerman Admiral James Stavridis U
- PDF Download Antimatter Blues A Mickey7 Novel by Edward Ashton
- download pdf Light Bringer A Red Rising Novel by Pierce Brown
- Download PDF Ghost Station by S.A. Barnes
- PDF Greeks Convenient Cinderella A Steamy Marriage of Convenience Story by Lynne Graham
- PDF Download The Outlaws Bride by Catherine Palmer
- Online Read Ebook Heroes Feast The Deck of Many Morsels 50 Cards for Conjuring Snacks Libations an
- epub download A Witchs Guide to Fetch Work Rituals Spells Practices by Blake Malliway
- PDF Kindle Malaparte A Biography by Maurizio Serra Stephen Twilley
- Download Pdf Killing Me Soufflé A Bakeshop Mystery by Ellie Alexander
- PDF Kindle Khadijah Story of Islams First Lady by Fatima Barkatulla
- Pdf ePub Deep Cuts A Novel by Holly Brickley download ebook
- Online Read Ebook Lackadaisy Essentials by Tracy J. Butler
- Murder Rewind Death at Blockbuster Minute Mysteries Set in the 1990s by S. K. Doyle on Audiobook New
- Pdf ePub Keep Me by Sara Cate download ebook
- Read online A Business Proposal Vol. 8 by Haehwa NARAK Perilla
- PDF Murdle Volume 1 100 Elementary to Impossible Mysteries to Solve Using Logic Skill and the Pow
- Mistletoe Daddy and The Cowboys Christmas Baby by Deb Kastner Carolyne Aarsen on Iphone New Format
- Children of Anguish and Anarchy by Tomi Adeyemi on Audiobook New
- Study for Obedience by Sarah Bernstein on Ipad
- 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
Example:
1
Responses
🟢200OK
application/json
Body
code
integer
required
>= 0<= 0
data
object (Pet)
required
id
integer <int64>
required
>= 1
category
object (Category)
required
name
string
required
Example:
doggie
photoUrls
array[string]
required
tags
array[object (Tag) {2}]
required
status
enum<string>
required
Allowed values:
availablependingsold
🟠404Record not found
🟠400Invalid input