- Start your Apidog journey
- pdf download Bonds of Hercules by Jasmine Mas
- Read pdf My Husband A Novel by Maud Ventura Emma Ramadan
- PDF Download The Wrong Wolf by Chris Craighead Matthew Klein
- Read online Margaret Fuller Collected Writings LOA 388 by Margaret Fuller Noelle A. Baker Megan Ma
- DOWNLOAD PDF EPUB Astronaut Hayleys Brave Adventure by Hayley Arceneaux Lucie Bee
- Read pdf Dinner at Our Place Recipes for Gathering by Our Place Shiza Shahid
- PDF Kindle Nuestra desquiciada historia de amor by Jandy Nelson
- Read online The Financial Coaching Playbook by Kelsa Dickey
- Read Pdf A Slash of Emerald by Patrice McDonough
- 50 German Coffee Breaks Short activities to improve your German one cup at a time by Coffee Break La
- Read pdf The House on the Strand by Daphne du Maurier
- PDF Download Wooing the Witch Queen by Stephanie Burgis
- Download PDF Wild and Wrangled A Rebel Blue Ranch Novel by Lyla Sage
- download pdf Beyond Darning Creative mending techniques by Hikaru Noguchi
- Read pdf Michelle Yeoh A Little Golden Book Biography by Angela Song Irene Chan
- PDF Kindle Mission Christmas by Lindsay McKenna Susan Grant
- Read pdf All-American Ads of the 60s by Steven Heller Jim Heimann
- Read Pdf Python for Data Science A Hands-On Introduction by Yuli Vasiliev
- PDF DOWNLOAD A Crack in Everything How Black Holes Came in from the Cold and Took Cosmic Centre St
- Lonely Planet Japan 17 by on Audiobook New
- download pdf Scourge of the Emirates by Peter J. Murray
- PDF Kindle Lore Olympus The Official Coloring Book by Rachel Smythe
- PDF EPUB Download Valiant Vel Vel Phillips and the Fight for Fairness and Equality by Jerrianne Ha
- Download PDF The Bounty Hunters Redemption by Janet Dean
- DOWNLOADS LSB MacArthur Study Bible 2nd Edition Unleashing Gods Truth One Verse at a Time Black Genu
- Online Read Ebook The Summer With You The Sequel My Summer of You Vol. 3 by Nagisa Furuya
- epub download Yes No or Maybe Manga Vol. 1 by Michi Ichiho Yukimura Lala Takemiya
- PDF EPUB Download HBRs 10 Must Reads 2025 The Definitive Management Ideas of the Year from Harvard B
- Read pdf Silver Surfers by Neil Peart
- DOWNLOADS Industrial Policy for the United States Winning the Competition for Good Jobs and High-Val
- DOWNLOAD PDF EPUB A Light in the Flame by Jennifer L. Armentrout
- Download PDF Small Wars Manual Poems by Chris Santiago
- pdf download Bofuri I Dont Want to Get Hurt so Ill Max Out My Defense. Vol. 15 light novel by Yuum
- PDF EPUB Download Daybreak in Gaza Stories of Palestinian Lives and Culture by Mahmoud Muna Matthew
- PDF Download Down with the System A Memoir by Serj Tankian
- PDF EPUB Download Winter Lost by Patricia Briggs Full Book
- Pdf ePub The Piece That Fits Special Edition by N. J. Gray download ebook
- PDF EPUB Download The U.S. Healthcare Ecosystem Payers Providers Producers Second Edition by La
- Read Pdf The Restless Wave A Novel of the United States Navy by James Stavridis USN
- Enough with This Slow Life I Was Reincarnated as a High Elf and Now Im Bored Volume 8 by rarutori c
- epub download Your Brains Not Broken Workbook Strategies for Navigating Your Emotions and Life with
- Online Read Ebook Kaiju No. 8 Vol. 12 by Naoya Matsumoto
- PDF Kindle The Watkins Book of Urban Legends by Gail de Vos
- The Loud House Vol. 18 Sister Resister by The Loud House Creative Team on Ipad
- Bonds of Hercules by Jasmine Mas on Iphone New Format
- PDF EPUB Download Cycle Breaker From Trauma to Triumph Learn to Heal Your past and Parent with Joy
- Read pdf Battle Mountain by C. J. Box
- Online Read Ebook Jimi Hendrix - The Complete Scores by Jimi Hendrix
- Download Pdf Tied to You Vol. 4 by WHAT Micah Kim
- Download PDF Bloom by Delilah S. Dawson
- 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