My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • epub download The Diary of a Young Girl The Definitive Edition by Anne Frank Otto M. Frank Mirjam
  • Download PDF SPIDER-MAN BY JOE KELLY OMNIBUS KEN LASHLEY COVER by Joe Kelly Zeb Wells Chris Bachal
  • PDF 10-Button Sounds Sing-Along Nursery Rhymes by Yi-Hsuan Wu
  • PDF Download All the Dangerous Things by Stacy Willingham
  • DOWNLOAD PDF EPUB The Hidden Girl and Other Stories by Ken Liu
  • Read Pdf The Many Lives Loves of Hazel Lavery by Lois Cahall
  • PDF DOWNLOAD The Theory of Everything Else A Voyage Into the World of the Weird by Dan Schreiber o
  • PDF The Premonition A Novel by Banana Yoshimoto Asa Yoneda
  • DOWNLOADS All the Blues in the Sky by Renée Watson
  • The Art of Discovery Digging into the Past in Renaissance Europe by Maren Elisabeth Schwab Anthony
  • Online Read Ebook Lonely Planet Austria by Rudolf Abraham Haywood Enright. Becki Priestley Anthony
  • DOWNLOADS King of Broadway by Dan Elish
  • download pdf Harlem Rhapsody by Victoria Christopher Murray
  • Pdf ePub Princeton Review ACT Prep 2025 6 Practice Tests Content Review Plus Info Practice for
  • Read online What Is Real The Unfinished Quest for the Meaning of Quantum Physics by Adam Becker
  • Read online The Bartenders Manifesto How to Think Drink and Create Cocktails Like a Pro by Toby Ma
  • Israels Black Panthers The Radicals Who Punctured a Nations Founding Myth by Asaf Elia-Shalev on Aud
  • download pdf Playground by Aron Beauregard
  • epub download Agents of the Four Seasons Vol. 4 Dance of Summer Part II by Kana Akatsuki Sergio A
  • PDF Download Darkenbloom by Eva Menasse Charlotte Collins
  • PDF EPUB Download The Art of Lies of P by NEOWIZ ROUND8 Studio Full Book
  • Read online Disney Moana 2 Big Golden Book by Golden Books Disney Storybook Art Team
  • Pdf ePub Taming 7 by Chloe Walsh download ebook
  • Poetry of Despair Love Spirituality and Prophecy by Sharon Garcia on Audiobook New
  • PDF Kindle Tales of the Teenage Mutant Ninja Turtles Defenders of NYC by Delaney Foerster
  • epub download How to Make Money An Ancient Guide to Wealth Management by Luca Grillo
  • Online Read Ebook Behind the Screens Illustrated Floor Plans and Scenes from the Best TV Shows of Al
  • Online Read Ebook High Sticking The Heart by Marie M
  • PDF DOWNLOAD Good Material by Dolly Alderton on Iphone
  • Pdf ePub The Cruel Prince Collectors Edition by Holly Black download ebook
  • PDF EPUB Download Rock Paper Scissors A Novel by Alice Feeney Full Book
  • Read online At the Wolfs Table by Rosella Postorino Leah Janeczko
  • PDF EPUB Download Over The Limit by K. Bromberg Full Book
  • PDF Download Bad Seed by Sharon Sala
  • PDF Kindle Supersymmetry A Novel by S. R. Schulz
  • PDF EPUB Download Ogami-san Cant Keep It In 7 by Yu Yoshidamaru Full Book
  • PDF Kindle Italians Pregnant Mistress by Carol Marinelli
  • Download Pdf Wherever You Are by Maya Banks
  • download pdf The Dog Who Followed the Moon by James Norbury
  • PDF EPUB Download Ruined Sinners to Reclaim Sin and Depravity in Historical Biblical Theological
  • pdf download The Science of Plants Inside Their Secret World by DK
  • Kim Jiyoung Born 1982 by Cho Nam-Joo Jamie Chang on Audiobook New
  • pdf download Every Tom Dick Harry A Novel by Elinor Lipman
  • 4th Degree by Nikki Castle on Iphone New Format
  • Read online Dive 2 The Deep by Gordon Korman
  • Year of the Meatball by Angela Calabrese on Ipad
  • Pdf ePub Minatos Laundromat Vol. 1 by Yuzu Tsubaki Sawa Kanzume Kei Coffman download ebook
  • Mommy Chose You by Kylah Lashae Bates Book Publish Pro on Audiobook New
  • PDF Kindle Resurrection Walk by Michael Connelly
  • Download Pdf Thieves by Lucie Bryon
  • 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
Previous
Download Pdf Thieves by Lucie Bryon
Next
Add a new pet to the store
Built with