My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOAD PDF EPUB The EACVI Textbook of Cardiovascular Magnetic Resonance by Victor Ferrari Massi
  • Reckless Spanish Edition Saga Powerless 2 by Lauren Roberts on Ipad
  • Read pdf Planeta by Ana Oncina
  • DOWNLOAD PDF EPUB Pretty Good House by Michael Maines Daniel Kolbert Emily Mottram Christopher
  • Download Pdf Los náufragos del Wager by David Grann Luis Murillo Fort
  • PDF DOWNLOAD I Will Teach You to Be Rich The Journal No Complicated Math. No More Procrastinating.
  • DOWNLOADS Three Apples Fell from the Sky The International Bestseller by Narine Abgaryan Lisa C. Ha
  • PDF Kindle Eyes on Gaza Witnessing Annihilation by Khaled A. Beydoun Mohammad Sabaaneh
  • DOWNLOAD PDF EPUB Lawful Vol. 1 by Greg Pak Diego Galindo Irma Kniivila
  • PDF Kindle Hidetaka Tenjins Artistry of Macross Macross frontier Films Macross Delta Archives by
  • Murder in an Irish Garden by Carlene OConnor on Ipad
  • DOWNLOAD PDF EPUB The Reluctant Guardian by Susanne Dietze
  • DOWNLOADS Conclave by Robert Harris
  • PDF Download The Four Steps by Cam Locke
  • PDF EPUB Download The Crimson Crown by Heather Walter Full Book
  • Read Pdf Reflections of an Invisible Duck by Geigan C. Locke
  • The Very Hungry Caterpillars Animal Colors by Eric Carle on Ipad
  • Read Pdf All the Captive Girls by Linda Hurtado Bond
  • Pdf ePub What You Make of Me A Novel by Sophie Madeline Dess download ebook
  • PDF DOWNLOAD The Count of Monte Cristo by Alexandre Dumas on Iphone
  • PDF DOWNLOAD The Housemaids Secret by Freida McFadden on Iphone
  • Download Pdf Keeping 13 Spanish Edition by Chloe Walsh
  • Download PDF White Liar by Tomo Serizawa
  • Read online Power Rangers Unlimited Forever Rangers by Ryan Parrott Melissa Flores Daniel Bayliss
  • Download PDF After the Storm by G. D. Wright
  • Download PDF And the Chicken Bawkd A story about finding your unique by Randy Mott Lynde Mott
  • epub download The Art of Sam Yang by Sam Yang 3dtotal Publishing
  • PDF EPUB Download The Enemys Daughter by Anne Blankman Full Book
  • PDF EPUB Download The Pasta Queen The Art of Italian Cooking by Nadia Caterina Munno Anna Frances
  • The Problem of Life How to Find Identity Purpose and Joy in a Disenchanted World by Mark Clark on
  • DOWNLOAD PDF EPUB A Theory of Dreaming Deluxe Limited Edition by Ava Reid
  • PDF Download Hauntress by Minetaro Mochizuki
  • The Winners by Fredrik Backman on Audiobook New
  • Murder on the Orient Express The Graphic Novel by Agatha Christie Bob Al-Greene on Audiobook New
  • epub download Poor Things Movie Tie-in A Novel by Alasdair Gray
  • PDF Bofuri I Dont Want to Get Hurt so Ill Max Out My Defense. Vol. 15 light novel by Yuumikan KO
  • The Peasant King by Tessa Afshar on Ipad
  • pdf download Hakumei Mikochi Tiny Little Life in the Woods Vol. 12 by Takuto Kashiki Taylor Engel
  • pdf download A Psalm for the Wild-Built by Becky Chambers
  • Read Pdf The Promise She Made An utterly heartbreaking and gripping World War 2 historical novel
  • Read Pdf Artifice Access a disability in fantasy anthology by Ella T Holmes
  • PDF DOWNLOAD World on the Brink How America Can Beat China in the Race for the Twenty-First Centur
  • Read pdf Big Jim Begins by Dav Pilkey
  • PDF Kindle The Night Is Defying A Nytefall Novel by Chloe C. Peñaranda
  • DOWNLOAD PDF EPUB The Pale Flesh of Wood A Novel by Elizabeth A. Tucker
  • pdf download A Childs War by Patrick Walsh Prithvi Singh
  • Texas Cinderella and Would-Be Wilderness Wife by Winnie Griggs Regina Scott on Audiobook New
  • PDF Kindle Si te gusta la oscuridad You Like It Darker by Stephen King
  • PDF A Bungalow for Two by Carole Gift Page
  • PDF Download Between Never and Forever by Shain Rose
  • 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-11 01:44:01
Previous
Find pet by ID
Next
Update an existing pet
Built with