- Start your Apidog journey
- pdf download The Comeuppance by Branden Jacobs-Jenkins
- PDF The Fix How the Twelve Steps Offer a Surprising Path of Transformation for the Well-Adjusted t
- DOWNLOAD PDF EPUB 44 Poems on Being with Each Other A Poetry Unbound Collection by Pádraig Ó. Tuam
- PDF DOWNLOAD A Dark and Drowning Tide A Novel by Allison Saft on Iphone
- PDF DOWNLOAD Every Tom Dick Harry A Novel by Elinor Lipman on Iphone
- PDF EPUB Download Never Alone Video Games as Interactive Design by Paola Antonelli Anna Burckhard
- Download Pdf Animal Farm by George Orwell Russell Baker Téa Obreht
- epub download Color Third Edition A workshop for artists and designers by David Hornung
- Read Pdf Dance of Thieves by Mary E. Pearson
- Her Own Rules Dangerous to Know by Barbara Taylor Bradford Barbara Taylor Bradford on Iphone New For
- Whirlwind by Kayla Grosse on Audiobook New
- Download Pdf A Promise by Oza Bouchard
- DOWNLOAD PDF EPUB Doctor Who Evil of the Daleks by Frazer Hines
- PDF EPUB Download Nexus A Brief History of Information Networks from the Stone Age to AI by Yuval No
- PDF DOWNLOAD La muerte contada por un sapiens a un neandertal Death as Told by a Sapiens to a Ne
- Pdf ePub The Let Them Theory A Life-Changing Tool That Millions of People Cant Stop Talking About b
- PDF Download Wonderment An Eclectic Guide to Awakening Your Divine Gifts and Inherent Potential by
- PDF EPUB Download Brown Enough True Stories About Love Violence the Student Loan Crisis Hollywo
- Read pdf See You in My 19th Life Vol. 5 by Lee Hye
- PDF Kindle Youre My Little Blessing by Nicola Edwards Natalie Marshall
- PDF DOWNLOAD The English Problem A Novel by Beena Kamlani on Iphone
- Conquistadores A New History of Spanish Discovery and Conquest by Fernando Cervantes on Audiobook Ne
- Online Read Ebook Tea Magic Cozy Spells in a Cup by Chloé Zarka Grinsnir
- PDF Carry the Cross with Padre Pio Daily Reflections for Lent by Susan De Bartoli Timothy M. Dolan
- Read pdf 2.5 Dimensional Seduction Vol. 13 by Yu Hashimoto
- PDF Download The Unquiet Bones A Novel by Loreth Anne White
- PDF Download Midnights by Greig Beck
- Download Pdf From Under the Truck A Memoir by Josh Brolin
- Axe Me No Questions by Paula Charles on Audiobook New
- PDF EPUB Download 2023 Lippincott Pocket Drug Guide for Nurses by Lippincott Williams Wilkins Ful
- Read online Kuma Kuma Kuma Bear Light Novel Vol. 20 by Kumanano 029
- PDF DOWNLOAD Once a Castle A Carrick Hall Novel Book 2 by Sarah Arthur on Iphone
- Read pdf Kitten Ninja Braver Than Ever by Colleen AF Venable Marcie Colleen Ellen Stubbings
- Celtic Symbols Unlock ancient wisdom and connect with the spirit of the land by Joules Taylor on Aud
- PDF EPUB Download El recluso by Freida McFadden Santiago del Rey Farrés Full Book
- What Alive Means Psychoanalytic Explorations by Thomas H. Ogden on Iphone New Format
- DOWNLOADS Crush by Svetlana Chmakova
- Read Pdf Sonic the Hedgehog Vol. 17 Adventure Awaits by Ian Flynn Evan Stanley Gale Galligan T
- download pdf All the Living and the Dead From Embalmers to Executioners an Exploration of the Peop
- DOWNLOADS The Reincarnation of the Strongest Exorcist in Another World Volume 3 by Kiichi Kosuzu Yu
- DOWNLOADS 2024 2025 ASVAB For Dummies 7 Practice Tests Flashcards Videos Online by Angie Papple
- Read online The Vision Board Oracle A 52-Card Deck and Guidebook by Amy Zerner Monte Farber
- Blood Ties A Novel by Jo Nesbo Robert Ferguson on Audiobook New
- Pdf ePub Things Better Left Unsaid by A.D. Johnson download ebook
- download pdf Musical Theatre Acting A Practical Guide by JV Mercanti Justin Guarini
- DOWNLOADS Vajrayana and the Culmination of the Path by Dalai Lama Thubten Chodron
- Pdf ePub Narwhals Sweet Tooth A Narwhal and Jelly Book 9 by Ben Clanton download ebook
- Read online MCAT Complete 7-Book Subject Review 2024-2025 Books Online 3 Practice Tests by Kaplan
- DOWNLOADS True Love Fades Away When the Contract Ends - Music of the Flower Gardens and Heavens Ligh
- Download Pdf Scripting Automation with Bash Powershell and Python by Michael Kofler
- 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