My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read online Carnivore in the Kitchen A Fresh and Fun Approach to Meat-Based Meals by Courtney Luna
  • pdf download The Cleaner by Samantha Beal
  • pdf download The Naturalist Society by Carrie Vaughn
  • Read online The Dare by Natasha Preston
  • PDF EPUB Download A Childs War by Patrick Walsh Prithvi Singh Full Book
  • Pdf ePub Cooking with Marshmello Recipes with a Remix by Marshmello download ebook
  • DOWNLOADS Toxic Productivity Reclaim Your Time and Emotional Energy in a World That Always Demands M
  • Pdf ePub Brimstone Deluxe Limited Edition by Callie Hart download ebook
  • Pdf ePub Learning Go An Idiomatic Approach to Real-World Go Programming by Jon Bodner download eboo
  • PDF Kindle A Little Burglary in Bibury by Christina Hamlett
  • PDF Play Along by Liz Tomforde
  • Online Read Ebook The Psychology of the Armenian Genocide by George Green
  • AWS Certified SysOps Administrator - Associate SOA-C02 Exam Cram by Marko Sluga Richard Crisci Wil
  • PDF Travis Barker AUS NZ SA MX by Travis Barker Daniel Rojas Clemente Ruiz
  • Toi Te Mana An Indigenous History of Maori Art by Deidre Brown Ngarino Ellis Jonathan Mane-Wheoki
  • DOWNLOAD PDF EPUB Beyond Painting by Max Ernst
  • Read Pdf Modern Persian Script Hacking The optimal way to learn the Persian Farsi alphabet by Ju
  • PDF EPUB Download Street Fighter Swimsuit Special Collection by UDON Various Full Book
  • PDF The Sacred Woman Journal Eighty-Four Days of Reflection and Healing by Queen Afua
  • PDF EPUB Download Tryst Six Venom by Penelope Douglas Full Book
  • Sun Bird The Amazing Journey of the Arctic Tern by Lindsay Moore on Iphone New Format
  • PDF Nuevas evidencias científicas de la existencia de Dios New Scientific Evidence for the Existe
  • download pdf A Fire in the Flesh by Jennifer L. Armentrout
  • Download Pdf One Piece Official Crew Coloring Collection Pirates of the Grand Line by Scholastic
  • Read online Servant of Earth by Sarah Hawley
  • Download PDF The New Menopause Navigating Your Path Through Hormonal Change with Purpose Power and
  • PDF Download Lonely Planet Spain by Isabella Noble Isabel Albiston Alexis Averbuck Federica Boc
  • The Liars Crown by Abigail Owen on Audiobook New
  • PDF Sebastiao Salgado. Amazonia by Sebastiao Salgado Lelia Wanick Salgado
  • PDF Assassins Apprentice Volume 2 Graphic Novel by Jody Houser Robin Hobb Ryan Kelly Jordie Bell
  • DOWNLOADS World Chess Champion Strategy Training for Club Players From Bobby Fischer to Ding Liren b
  • Pdf ePub A Dutiful Boy A Memoir of Secrets Lies and Family Love by Mohsin Zaidi download ebook
  • epub download The Woman in Me Italian-language Edition by Britney Spears
  • Pods by Shawn Winchell on Audiobook New
  • Online Read Ebook SANCTIFY Volume 3 by GODSSTATION
  • PDF Kindle Distance A Dark Mafia Romance by Luna Mason
  • PDF Kindle People of Means A Novel by Nancy Johnson
  • DOWNLOAD PDF EPUB Bake With Brooki by Brooke Bellamy
  • Read Pdf The Mafia Nanny A WEBTOON Unscrolled Graphic Novel by SH00 Violet Matter
  • PDF DOWNLOAD A Theory of Dreaming Deluxe Limited Edition by Ava Reid on Iphone
  • Read pdf Frankenstein Signature Classics by Mary Shelley
  • PDF DOWNLOAD Aangs Epic Adventures Avatar The Last Airbender by Random House on Iphone
  • PDF Download Hogwarts Legacy The Official Game Guide by Paul Davies Kate Lewis
  • PDF EPUB Download A Home for Her Family by Virginia Carmichael Full Book
  • DOWNLOADS A Christmas Carol by Charles Dickens John Leech
  • Read pdf Semantic Error comic Vol. 1 by Angy
  • Read online Rivals by Jilly Cooper
  • Read online A Knock at the Door A homeless man a lawyer . . . and a family changed forever by Rob P
  • Online Read Ebook Starcraft II Flashpoint by Christie Golden
  • Pdf ePub Beach Cottage Kisses by Tara Taylor Quinn download ebook
  • 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:02:40
Previous
Find pet by ID
Next
Update an existing pet
Built with