My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Playground by Aron Beauregard on Audiobook New
  • pdf download With a Little Luck by Marissa Meyer Chuck Gonzales
  • How to Win at Travel by Brian Kelly on Ipad
  • PDF EPUB Download The Last Bookstore on Earth by Lily Braun-Arnold Full Book
  • download pdf The Odyssey Penguin Classics Deluxe Edition by Homer
  • PDF DOWNLOAD Bitsy Bat Team Star by Kaz Windness on Iphone
  • Read online Yokai Tarot by Paolo Bertazzo Marga Biazzi
  • epub download Alchemy of Secrets by Stephanie Garber
  • Pdf ePub Memes from Bikini Bottom SpongeBob Squarepants A Nautical Nonsense Meme Book by Brigid Mar
  • DOWNLOADS Shame-Sex Attraction Survivors Stories of Conversion Therapy by Lucas Wilson
  • Read Pdf Tony Tans Asian Cooking Class by Tony Tan
  • Read pdf Lippincott Illustrated Reviews Biochemistry by Emine E. Abali Susan D. Cline David S. F
  • PDF EPUB Download Existential Physics A Scientists Guide to Lifes Biggest Questions by Sabine Hoss
  • PDF Proverbs For A Great Leader Good leadership by Lorenzo Jesus Serrano
  • Read online Small Worlds by Caleb Azumah Nelson
  • Read online Sleep Like a Polar Bear by Kyle Richard Olson
  • pdf download Pummel the Devil A Biblical Foundation for Spiritual Warfare by Daniel Duval
  • Read Pdf Skincare Decoded Revised and Expanded The Practical Guide to Beautiful Skin by Victoria F
  • Normal People A Novel by Sally Rooney on Iphone New Format
  • DOWNLOADS The Time-Block Planner A Daily Method for Deep Work in a Distracted World by Cal Newport
  • Download Pdf THE BRIDGE KINGDOM by Danielle L. Jensen
  • PDF Stop Bullshitting Yourself by Drew Hanlen
  • The Identity Trap A Story of Ideas and Power in Our Time by Yascha Mounk on Iphone New Format
  • PDF Make Work Fair Data-Driven Design for Real Results by Iris Bohnet Siri Chilazi
  • Read Pdf Wave of Blood by Ariana Reines
  • epub download The Childrens Home by Charles Lambert
  • Pdf ePub The Fed and the Flu Parsing Pandemic Economic Shocks by David R Kotok Michael R Englund
  • PDF EPUB Download A Year of Watercolour A seasonal guide to botanical watercolour painting by Harrie
  • pdf download Hal by Amanda Berlind
  • epub download Michael Vey 8 The Parasite by Richard Paul Evans
  • pdf download Avatar El camino del agua. Diccionario visual Avatar The Way of Water The Visual Dictio
  • PDF Kindle The Fake Out A Vancouver Storm Novel by Stephanie Archer
  • DOWNLOADS Midnights by Greig Beck
  • Download PDF Troubled A Memoir of Foster Care Family and Social Class by Rob Henderson
  • Read pdf Jimmy Page The Anthology by Jimmy Page
  • Flawless Special Edition by Elsie Silver on Iphone New Format
  • DOWNLOAD PDF EPUB Book of Cutter 1 by James Tynion IV Werther DellEdera
  • Every Fall by Angela Douglas on Ipad
  • DOWNLOAD PDF EPUB The Lost Rainforests of Britain by Guy Shrubsole
  • 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 EPUB The Lost Rainforests of Britain by Guy Shrubsole
Next
Add a new pet to the store
Built with