My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Hunting Static by Jayde Layne on Ipad
  • Read Pdf Parent Yourself First Raise Confident Compassionate Kids by Becoming the Parent You Wish
  • pdf download An Honored Vow by Melissa Blair
  • Madame Sorels Lodger by Tracy Wise on Iphone New Format
  • Download Pdf The Spider A novel by Lars Kepler Alexandra Coelho Ahndoril Alexander Ahndoril Alice
  • epub download Reckless by Elsie Silver
  • Read Pdf Dahlia in Bloom Crafting a Fresh Start With Magical Tools Volume 8 by Hisaya Amagishi Ke
  • Read online You Are the Boss of You Cultivate the Mindset and Tools to Live Life on Your Terms by Sh
  • download pdf Dark Lord The Rise of Darth Vader Star Wars by James Luceno
  • DOWNLOAD PDF EPUB The Moody Bible Atlas by Barry J. Beitzel
  • Pdf ePub RSN Stitch Bank 200 Essential Embroidery Stitches by The Royal School of Needlework Susan
  • Read online Michael Moorcocks Elric Volume 5 The Necromancer by Julien Blondel Valentin Sécher
  • Read Pdf Kingdom of Claw The Ashen Series Book Two by Demi Winters
  • PDF Kindle Seaforth World Naval Review 2025 by Conrad Waters
  • epub download The Curse of Pietro Houdini A Novel by Derek B. Miller
  • epub download A History of Philosophy The Condensed Copleston by Anthony Carroll Frederick Coplesto
  • Read online Hidden Axis Forces Beyond the Visible World by Shepard Ambellas
  • pdf download The Most by Jessica Anthony
  • Pdf ePub The Museum of Witchcraft by Diane Purkiss download ebook
  • Pdf ePub Percy Jackson and the Olympians The Official Cookbook by Jarrett Melendez download ebook
  • Download PDF Saxophone Colossus The Life and Music of Sonny Rollins by Aidan Levy
  • PDF Kindle After the North Pole A Story of Survival Mythmaking and Melting Ice by Erling Kagge K
  • PDF EPUB Download Dismantling the Masters Clock On Race Space and Time by Rasheedah Phillips Full
  • Download PDF Not About a Boy by Myah Hollis
  • PDF EPUB Download Tired as Fck Burnout at the Hands of Diet Self-Help and Hustle Culture by Caro
  • pdf download Configurations of Time Imagining Other Temporalities in the Artist Residency by Angela
  • PDF Kindle Pro Bono by Thomas Perry
  • Read Pdf First Sticker Book Cars by Simon Tudhope Sébastien Telleschi
  • Pdf ePub Harry Potter y el prisionero de Azkaban Harry Potter and the Prisoner of Azkaban by J. K
  • Read online The Time-Block Planner A Daily Method for Deep Work in a Distracted World by Cal Newport
  • PDF The Wagner Group Inside Russias Mercenary Army by Jack Margolin
  • PDF Kindle Sin Eater A Novel by Megan Campisi
  • download pdf Filthy Rich Vampire by Geneva Lee Albin
  • PDF EPUB Download Improvise Freely Throw away the rulebook and unleash your creativity by Patti St
  • Download PDF Witchcraft A History in Thirteen Trials by Marion Gibson
  • Download PDF A Mystery of Mysteries The Death and Life of Edgar Allan Poe by Mark Dawidziak
  • pdf download Joker DC Compact Comics Edition by Brian Azzarello Lee Bermejo
  • Download Pdf Wealth Is a Mindset Change Your Mind Change Your Money by Shang Saavedra
  • Read Pdf La guarida del diablo Nora Kelly 3 by Douglas Preston Lincoln Child Efrén del Valle Peñ
  • Online Read Ebook Applied Research Methods in Criminal Justice and Criminology by Eric J. Fritsch C
  • Download PDF Absolute Mister Miracle by Tom King and Mitch Gerads by Tom King Mitch Gerads
  • PDF EPUB Download The Train That Took You Away Absolutely page-turning and heartbreaking World War 2
  • PDF Kindle The Official Guide to Randonautica Everything You Need to Know about Creating Your Rando
  • First Love Guiding Teens through Relationships and Heartbreak by Lisa A. Phillips on Iphone New Form
  • Star Wars Life Day Treasury Holiday Stories From a Galaxy Far Far Away by George Mann Cavan Scott
  • Read Pdf Never Lie by Freida McFadden
  • download pdf The Great Gatsby A Graphic Novel by F. Scott Fitzgerald Pete Katz
  • Read online Sweet Nothings Confessions of a Candy Lover by Sarah Perry
  • Download Pdf The Bombshell Devils Advocate by Nikkita Bell
  • 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 The Bombshell Devils Advocate by Nikkita Bell
Next
Add a new pet to the store
Built with