My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Bloodborne The Death of Sleep by Ales Kot Piotr Kowalski
  • PDF Julia A Novel by Sandra Newman
  • Download Pdf I Will Do Better A Fathers Memoir of Heartbreak Parenting and Love by Charles Bock
  • DOWNLOADS Bunburry - Episode 13-15 A Cosy Mystery Compilation by Helena Marchmont
  • To Sicily with Love by Jennifer Probst on Audiobook New
  • Villains Are Destined to Die Vol. 7 by SUOL AH Cho David Odell on Audiobook New
  • Langenscheidt Deutsch - alles drin - All-in-1 German Grammar and Vocabulary Bilingual English-German
  • Read pdf Disappointing Affirmations Sticker Book 100 Stickers to Stick Wherever by Dave Tarnowski
  • Download PDF The Underwater Basilica of Nicaea Archaeology in the Birthplace of Christian Theology b
  • Online Read Ebook Black Hat Python 2nd Edition Python Programming for Hackers and Pentesters by Jus
  • Read online Habitats From Ocean Trench to Tropical Forest by DK Chris Packham
  • Read online La mujer de arriba The Wife Upstairs by Freida McFadden
  • Read online SANCTIFY Volume 3 by GODSSTATION
  • DOWNLOADS The Saga of Tanya the Evil Vol. 13 light novel Dum Spiro Spero Part 1 by Carlo Zen Shin
  • PDF Download 50 Great Stalks Hunting the Worlds Greatest Game Up Close by Craig Boddington
  • PDF EPUB Download Chocolate All Day Recipes for indulgence - morning noon and night by Kirsten Ti
  • PDF Kindle The Way I Used to Be Collection Boxed Set The Way I Used to Be The Way I Am Now by Amber
  • Download Pdf The Boyhood of Cain by Michael Amherst
  • The Art of Lies of P by NEOWIZ ROUND8 Studio on Ipad
  • Read Pdf Wall Poems by Mickey McKay
  • download pdf The Big Five for Life by John P Strelecky
  • Read Pdf A Kiss of Iron by Clare Sager
  • download pdf The Stoic Path to Wealth Ancient Wisdom for Enduring Prosperity by Darius Foroux
  • PDF Greubel Forsey The Art of Invention by Michael Clerizo
  • download pdf The Person I Loved Asked Me to Die in My Sisters Stead Volume 2 by Mizuki Nagano Mak
  • The Bosss Mistletoe Maneuvers by Linda Thomas-Sundstrom on Ipad
  • PDF Download C Software Design Design Principles and Patterns for High-Quality Software by Klaus I
  • Download Pdf Ilium A Novel by Lea Carpenter
  • epub download 3D Scroll Saw Projects 35 Fun Compound-Cut Projects More Than 150 Patterns by Diana L
  • PDF DOWNLOAD Jaghatai Khan Warhawk of Chogoris by Chris Wraight on Iphone
  • Read online Yes No or Maybe Manga Vol. 1 by Michi Ichiho Yukimura Lala Takemiya
  • DOWNLOADS Rainbows After Storms Vol. 2 by Luka Kobachi
  • PDF EPUB Download Village Politics Can Be Murder by Jeanne M. Dams Full Book
  • Pdf ePub Lifeform by Jenny Slate download ebook
  • PDF House of Flame and Shadow by Sarah J. Maas
  • Online Read Ebook The Warriors Bride Alliance by Denise Lynn
  • download pdf Clive Cusslers The Devils Sea by Dirk Cussler
  • Read online The Apocalypse of the Birds 1 Enoch and the Jewish Revolt against Rome by Elena L Dugan
  • pdf download Lucia and the Loom Weaving Her Way to Happiness Volume 3 by Hisaya Amagishi Esora Amai
  • Spud Mans Spudtacular Baked Potato Cookbook by Spud Man on Audiobook New
  • PDF EPUB Download Take Me Home by Ouchi Kaeru Full Book
  • Download Pdf A Knock at the Door A homeless man a lawyer . . . and a family changed forever by Rob
  • Read online The Paradise Problem by Christina Lauren
  • Simply the Best A Chicago Stars Novel by Susan Elizabeth Phillips on Ipad
  • Read Pdf Un café en el fin del mundo by John Strelecky
  • PDF Kindle The Dark Mirror by Samantha Shannon
  • Online Read Ebook Countering Chinas Great Game A Strategy for American Dominance by Michael Scott So
  • PDF DOWNLOAD CABIN Off the Grid Adventures with a Clueless Craftsman by Patrick Hutchison on Iphon
  • Timehunters by Sara Samuels on Iphone New Format
  • Online Read Ebook High-Functioning Anxiety A 5-Step Guide to Calming the Inner Panic and Thriving by
  • 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
Modified at 2025-06-15 21:57:01
Previous
Find pet by ID
Next
Update an existing pet
Built with