My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read Pdf Spark of the Everflame German Edition by Penn Cole Nina Bellem
  • Pdf ePub The Seminoles by Virginia Driving Haw Sneve Ronald Himler download ebook
  • Trouble Dog From Shelter Dog to Conservation Hero by Carol A. Foote Larry Day on Iphone New Format
  • PDF Kindle One Night with the Best Man by Amanda Berry
  • Read Pdf Fearless by Lauren Roberts
  • The Artists Way Toolkit How to Use the Creative Practices by Julia Cameron on Iphone New Format
  • pdf download A Knock at the Door A homeless man a lawyer . . . and a family changed forever by Rob
  • Pdf ePub Hematology Board Review Blueprint Study Guide and QA by Rami N. Khoriaty MD Morgan Jones
  • Read pdf My Midlife Magic Daze by Jennifer L. Hart
  • download pdf The Anaconda in the Chandelier Writings on China by Perry Link
  • Read online Alas - Apollo and Hyacinthus by Richard C Gray
  • pdf download Godblight by Guy Haley
  • PDF Their Shadows Deep A Novel by Peter Golden
  • PDF Kindle The Forgive for Good Recovery Workbook Overcome Addiction Heal Your Past and Find Peac
  • Read pdf Five Broken Blades Deluxe Limited Edition by Mai Corland
  • Oshi No Ko Vol. 9 by Aka Akasaka Mengo Yokoyari Taylor Engel on Iphone New Format
  • Download Pdf Robert Ludlums The Bourne Vendetta by Brian Freeman
  • Download PDF Ted Templeman A Platinum Producers Life in Music by Templeman Ted Greg Renoff
  • The Nativity Story by Juliet David Jo Parry on Ipad
  • PDF DOWNLOAD Driftwood The Life of Harlan Hubbard by Jessica K. Whitehead on Iphone
  • Single at Heart The Power Freedom and Heart-Filling Joy of Single Life by Bella DePaulo PhD on Ipa
  • PDF Kindle Green Lantern Vol. 2 Love and War by Jeremy Adams Amancay Nahuelpan
  • download pdf Monster Bait Bundle A Collection of Monster Mpreg Shorts by Rowan Stone
  • PDF EPUB Download Alfred Dreyfus The Man at the Center of the Affair by Maurice Samuels Full Book
  • Download Pdf Histories Within Us by Matthew Kressel Mercurio D Rivera
  • PDF Murder on the Cornish Coast Completely addictive British cozy crime mystery by Helena Dixon
  • download pdf Alfredo Paredes at Home by Alfredo Paredes Brad Goldfarb
  • DOWNLOAD PDF EPUB Love After Midnight A Novel by Sister Souljah
  • DOWNLOADS Anne Has an Alligator by Margaret Bain Cameron Bain
  • Download Pdf Tailchasers Song by Tad Williams
  • Read online You Gotta Eat Real-Life Strategies for Feeding Yourself When Cooking Feels Impossible by
  • PDF DOWNLOAD Eventually Everything Connects Eight Essays on Uncertainty by Sarah Firth on Iphone
  • DOWNLOAD PDF EPUB Tracking the Truth by Sarah Varland Sharee Stover
  • epub download A Childs Christmas Wish by Erica Vetsch
  • PDF DOWNLOAD Life Drawing A Love and Rockets Collection by Jaime Hernandez on Iphone
  • Online Read Ebook Hank Goes Peck by Maudie Powell-Tuck Duncan Beedie
  • Lethal Vengeance by Robert Bryndza on Iphone New Format
  • 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-10 00:17:20
Previous
Lethal Vengeance by Robert Bryndza on Iphone New Format
Next
Add a new pet to the store
Built with