My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Philosophy 2e Asking Questions Seeking Answers by Stephen Stich Thomas Donaldson on Audiobook New
  • Download Pdf Love in Bloom by Tara Conrad Willow Winters Lydia Michaels M. Robinson
  • PDF EPUB Download Harlequin Intrigue December 2024 - Box Set 1 of 2 A Suspense Romance Collection
  • Download PDF The Narrative Brain The Stories Our Neurons Tell by Fritz Alwin Breithaupt Ph.D.
  • PDF Thats Not My Name by Megan Lally
  • DOWNLOAD PDF EPUB Hunny Koko Go To Italy by Adela Lauren Picard
  • Online Read Ebook Tales from Muggleswick Wood A magical bedtime treasury by Vicky Cowie Charlie Mac
  • PDF EPUB Download Glaciers Edge A Novel by R. A. Salvatore Full Book
  • download pdf Fagin the Thief A Novel by Allison Epstein
  • PDF DOWNLOAD I Cross-Dressed for the IRL Meetup 3 by Kurano on Iphone
  • Read pdf Pathfinder Adventure Path Abomination Vaults 5e by James Jacobs Vanessa Hoskins Stephen
  • Download Pdf The Perfect Son by Freida McFadden
  • Nothing Breaks Like A Heart A Riveting Psychological Thriller by Barbara Freethy on Ipad
  • PDF DOWNLOAD Kingmakers Graduation Deluxe Edition by Sophie Lark on Iphone
  • Pdf ePub Gantz Omnibus Volume 4 by Hiroya Oku Matthew Johnson download ebook
  • You Dont Need to Forgive Trauma Recovery on Your Own Terms by Amanda Ann Gregory LCPC on Iphone New
  • 50 Swedish Coffee Breaks Short activities to improve your Swedish one cup at a time by Coffee Break
  • Pdf ePub Werewolf Hamlet by Kerry Madden-Lunsford download ebook
  • PDF EPUB Download The Last Great Acts of Saint Peter Re-enacted from Ancient Writings by Edward N. B
  • Pdf ePub Skills and Drills For Practical Shooting by Ben Stoeger Hwansik Kim download ebook
  • PDF EPUB Download Killing Me Soufflé A Bakeshop Mystery by Ellie Alexander Full Book
  • epub download Slaying the Shadow Prince by Helen Scheuerer
  • pdf download HBRs 10 Must Reads on High Performance with bonus article by Harvard Business Review J
  • PDF Mathematics Tasks for the Thinking Classroom Grades K-5 by Peter Liljedahl Maegan Giroux
  • download pdf Heartland Courtship and Homefront Hero by Lyn Cote Allie Pleiter
  • Relatos de la noche Tales of the Night by Uriel Reyes on Ipad
  • Online Read Ebook Unstuck by Barbara Dee
  • PDF Riviere and the Land of Prayer Vol. 2 manga by Jougi Shiraishi Neriume Azure Kevin Steinbac
  • Read Pdf Jackson Pollock The Early Years 19341947 by Joanne Snrech Orane Stalpers Cécile Debray
  • Job Moves 9 Steps for Making Progress in Your Career by Ethan Bernstein Michael B. Horn Bob Moesta
  • Pdf ePub Lore Olympus Volume Three by Rachel Smythe download ebook
  • PDF EPUB Download Komi Cant Communicate Vol. 31 by Tomohito Oda Full Book
  • PDF EPUB Download Moriarty the Patriot Vol. 17 by Ryosuke Takeuchi Hikaru Miyoshi Arthur Conan
  • Download Pdf Freshman Year A Graphic Novel by Sarah Mai
  • pdf download Small in the City by Sydney Smith
  • 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}
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-10 00:08:40
Previous
pdf download Small in the City by Sydney Smith
Next
Add a new pet to the store
Built with