My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read online My Friends by Hisham Matar
  • Read Pdf The Nvidia Way Jensen Huang and the Making of a Tech Giant by Tae Kim
  • download pdf Powerless Special Edition by Elsie Silver
  • PDF Kindle David Buschs Nikon Z9 Z8 Guide to Digital Still Photography by David D. Busch
  • PDF Download Alguien para mí Someone for Me by Juan Arcones Nagore Odriozola
  • Pdf ePub Orisha Volume 1 With Great Power by Huzayfa Umar Saturday AM download ebook
  • Read Pdf A Western Christmas Homecoming by Lynna Banning Lauri Robinson Kathryn Albright
  • PDF EPUB Download Notes on Surviving the Fire A Novel by Christine Murphy Full Book
  • DOWNLOADS Antimatter Blues A Mickey7 Novel by Edward Ashton
  • When I Arrived at the Castle by E.M. Carroll on Audiobook New
  • Mated by Kerry Adrienne Sionna Fox Shari Mikels on Ipad
  • Download Pdf My Boyfriend is a Dog Vol. 2 by kadiro
  • Pdf ePub Donde viven las musas Land of Muses by Marianela Dos Santos download ebook
  • epub download The Shepherds Betrothal by Lynn A. Coleman
  • download pdf Solitary Walker A Novel of Mary Wollstonecraft by N J Mastro
  • download pdf Were So Blessed Forty Days of Devotions and Activities for the Whole Family by CAIN J
  • download pdf Montecore by Luis Cervantes Duran Windfield Gustavo Machado
  • Pdf ePub Over The Limit by K. Bromberg download ebook
  • Download PDF Halfway to Hell by William W. Johnstone J. A. Johnstone
  • download pdf A to Z of The Designers Republic by Ian Anderson
  • PDF EPUB Download Climatic Architecture Philippe Rahm architectes by Philippe Rahm Full Book
  • Read Pdf God of Pain Special Edition Print by Rina Kent
  • Matthews Choice by Patricia Bradley on Iphone New Format
  • DOWNLOADS Machinerys Handbook and Digital Edition 31st Edition Toolbox Ed. by Erik Oberg
  • DOWNLOADS The Lore of Pluto Reshaping the Void by Steve Judd
  • My Possessive Alpha Twins For Mate by Veejay on Ipad
  • Download Pdf Builders of a Nation by Haifaa Younis
  • Into Thin Air by Mary Ellen Porter on Iphone New Format
  • Read pdf Sacred Places Sacred Teachings Following the Footsteps of the Buddha by Khenchen Konchog
  • PDF EPUB Download Occult Germany Old Gods Mystics and Magicians by Christopher McIntosh Full Boo
  • Read pdf His Cinderella Next Door by Cara Colter
  • PDF Kindle One of Us Is Lying Series Paperback Boxed Set One of Us Is Lying One of Us Is Next One o
  • Online Read Ebook How to Starve Cancer ...and Then Kill It With Ferroptosis by Jane McLelland
  • PDF Download Our Plastic Problem A Call for Global Solutions by Megan Durnford
  • Download PDF Todas esas cosas que te diré mañana Everything Ill Say to You Tomorrow by Elisabet Be
  • Online Read Ebook Salte con la tuya Get Your Way by Álvaro Gordoa
  • Download Pdf Scent of Peril A Christian Romantic Suspense by Laura Scott
  • download pdf A Knock at the Door A homeless man a lawyer . . . and a family changed forever by Rob
  • pdf download A Day at the Post Office by Theonesse Cheon
  • PDF DOWNLOAD JoyFull Cook Effortlessly Eat Freely Live Radiantly A Cookbook by Radhi Devlukia-Sh
  • PDF Accidentally Wes Anderson Adventures by Wally Koval Amanda Koval Wes Anderson
  • pdf download The Blunder Years A Boyhood Memoir by Phil Caragol
  • The Night Is Defying A Nytefall Novel by Chloe C. Peñaranda on Iphone New Format
  • Download Pdf Killing Time An Agatha Raisin Mystery by M. C. Beaton R.W. Green
  • PDF EPUB Download True Colors Star Wars Republic Commando 3 by Karen Traviss Full Book
  • Read Pdf Doctor Who Rogue by Kate Herron Briony Redman
  • PDF EPUB Download His Roommates Pleasure by Lana McGregor Full Book
  • Read Pdf Snowed In at the Cat Cafe by Rachel Rowlands
  • epub download London Uncanny A Gothic Guide to the Capital in Weird History and Fiction by Clive Blo
  • Harmony by Whitney Hanson on Ipad
  • 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-12 21:01:55
Previous
Harmony by Whitney Hanson on Ipad
Next
Add a new pet to the store
Built with