My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Kindle The Last Dance You Saved by Lj Evans
  • download pdf Dieta Keto Recetas faciles con 5 ingredientes The Easy 5-Ingredient Ketogenic Diet C
  • PDF EPUB Download Dragon Age Tevinter Nights by Patrick Weekes Full Book
  • PDF Download I Was Reincarnated as the Villainess in an Otome Game but the Boys Love Me Anyway Vo
  • DOWNLOADS Neuroanatomy through Clinical Cases by Hal Blumenfeld
  • Pdf ePub Langenscheidt Deutsch - alles drin - All-in-1 German Grammar and Vocabulary Bilingual Engl
  • The Housemaids Secret A totally gripping psychological thriller with a shocking twist by Freida McFa
  • download pdf Cannabis Farming How to Grow Harvest and Process Organic Field-Grown Cannabis by Ad
  • Online Read Ebook The Survivor Wants to Die at the End by Adam Silvera
  • Wallace Gromit Vengeance Most Fowl The Junior Novel by Amanda Li on Iphone New Format
  • Download Pdf Hokkaido Recipes from the Seas Fields and Farmlands of Northern Japan by Tim Anderson
  • Pdf ePub The Trolls of Wall Street How the Outcasts and Insurgents Are Hacking the Markets by Natha
  • Pdf ePub Its Now or Nether Minecraft Ironsword Academy 2 by Caleb Zane Huett download ebook
  • Bordeaux The Smart Travellers Wine Guide by Georgie Hindle on Iphone New Format
  • DOWNLOADS World Trigger Vol. 27 by Daisuke Ashihara
  • download pdf The Village Healers Book of Cures by Jennifer Sherman Roberts
  • download pdf Your Farm by Jon Klassen
  • Online Read Ebook Things Better Left Unsaid by A.D. Johnson
  • PDF Download The Indoctrinated Brain How to Successfully Fend Off the Global Attack on Your Mental
  • Download Pdf Honey Hunger A Novel by Zahran Alqasmi Marilyn Booth
  • The Perfect Son by Freida McFadden on Audiobook New
  • Haruki Murakami Manga Stories 2 The Second Bakery Attack Samsa in Love Thailand by Haruki Murakami
  • Read pdf Fool Night Vol. 1 by Kasumi Yasuda
  • Read Pdf Reversing Alzheimers The New Toolkit to Improve Cognition and Protect Brain Health by Hea
  • Kill for Me Kill for You A Novel by Steve Cavanagh on Ipad
  • download pdf The Wakanda Files A Technological Exploration of the Avengers and Beyond by Troy Benja
  • PDF Download The Body A Guide for Occupants by Bill Bryson
  • PDF EPUB Download The Power Pause How to Plan a Career Break After Kids--and Come Back Stronger Than
  • Download Pdf The War on Men Why Society Hates Them and Why We Need Them by Owen Strachan
  • Read pdf Rozando el cielo En el hockey y el amor todo vale Mile High by Liz Tomforde
  • Pdf ePub Animal Farm by George Orwell Russell Baker Téa Obreht download ebook
  • pdf download Memorial Days A Memoir by Geraldine Brooks
  • How to Be a Childrens Book Illustrator A Guide to Visual Storytelling by Publishing 3dtotal on Iphon
  • PDF High Island Blues A George Molly Palmer-Jones Novel by Ann Cleeves
  • Seaforth World Naval Review 2025 by Conrad Waters on Iphone New Format
  • download pdf How to Become a Black Writer Creating and Honoring Black Stories That Matter by Marita
  • Piggy Traitor by Terrance Crawford Dan Widdowson on Ipad
  • PDF Kindle Metamorphoses Translated by Stephanie McCarter by Stephanie McCarter Ovid
  • download pdf Lover Birds by Leanne Egan
  • DOWNLOADS FANTASTIC FOUR GRAND DESIGN by Tom Scioli Stan Lee Jack Kirby
  • Yakuza Fiancé Raise wa Tanin ga Ii Vol. 6 by Asuka Konishi on Iphone New Format
  • Read Pdf Anathema by Keri Lake Julie Belfield
  • Fluentish Language Learning Planner Journal by Jo Franco on Iphone New Format
  • PDF DOWNLOAD Our Biggest Fight Reclaiming Liberty Humanity and Dignity in the Digital Age by Fra
  • Read pdf Give Her Credit The Untold Account of a Womens Bank That Empowered a Generation by Grace
  • pdf download Las armas secretas The Secret Weapons by Julio Cortázar
  • Pdf ePub Murder at la Villette by Cara Black download ebook
  • Read online Wicked The Life and Times of the Wicked Witch of the West by Gregory Maguire
  • Download Pdf 44 Poems on Being with Each Other A Poetry Unbound Collection by Pádraig Ó. Tuama
  • PDF Download Classroom of the Elite Year 2 Light Novel Vol. 9 by Syougo Kinugasa Tomoseshunsaku
  • 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

Add a new pet to the store

POST
/pet
pet
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/pet' \
--data-urlencode 'name=Hello Kitty' \
--data-urlencode 'status=sold'
Response Response 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

Body Params application/x-www-form-urlencoded
name
string 
required
Pet Name
Example:
Hello Kitty
status
string 
required
Pet Sales Status
Example:
sold

Responses

🟢201OK
application/json
Body
code
integer 
required
>= 0<= 0
data
object (Pet) 
required
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
Previous
Find pet by ID
Next
Update an existing pet
Built with