My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download Pdf Justice Society of America vol. 2 Long Live The JSA by Geoff Johns Mikel Janin
  • PDF Download The Mimosa Confessions Light Novel Vol. 2 by Mei Hachimoku KUKKA
  • Leather Lark Ruinous Love Trilogy 2 by Brynne Weaver on Ipad
  • PDF Kindle Make Change That Lasts BW Illustrations 9 Simple Ways to Break Free from the Habits That
  • Download Pdf We Three Queens by Rhys Bowen
  • pdf download Fiancée No More The Forsaken Lady the Prince and Their Make-Believe Love Volume 3 by
  • PDF Estación Damasco by David McCloskey Jofre Homedes Beutnagel
  • PDF EPUB Download Lonely Planet Pocket Barcelona by Isabella Noble Full Book
  • DOWNLOADS Boy Vs. Beast 3 Fire Beast by Mac Park
  • The Guardian Test Legends of Lotus Island 1 by Christina Soontornvat Kevin Hong on Audiobook New
  • Pdf ePub Little Book of Tom Ford The story of the iconic brand by Kristen Bateman download ebook
  • Download PDF Chokepoints American Power in the Age of Economic Warfare by Edward Fishman
  • The Bad Ones A Novel by Melissa Albert on Iphone New Format
  • download pdf Italian Wines 2025 by Gambero Rosso
  • Download Pdf His Prairie Sweetheart by Erica Vetsch
  • Painting the Cosmos How Art and Science Intersect to Reveal the Secrets of the Universe by Nia Imara
  • Read online Mother Love Murder in a Small Town by L.R. Wright
  • The Dreams We Knew A Novel of the Roaring Twenties by Rachel Scott McDaniel on Audiobook New
  • PDF DOWNLOAD Halfway to Hell by William W. Johnstone J. A. Johnstone on Iphone
  • download pdf Long Island by Colm Tóibín
  • PDF Kindle Farther Than the Moon by Lindsay Lackey
  • Read pdf My Life on the Mountain by Marion Brand
  • Download PDF It Takes More Than a Pretty Face to Fall in Love Vol. 1 by Karin Anzai
  • Download Pdf The Dare by Harley Laroux
  • Status Royale Vol. 2 by Ru Xu on Ipad
  • PDF Kindle The Lost Victim by Robert Bryndza
  • Pdf ePub Decadence by Soph Tang download ebook
  • The Upcycled Self A Memoir on the Art of Becoming Who We Are by Tariq Trotter on Audiobook New
  • Read online Glow of the Everflame by Penn Cole
  • Alejandra Pizarnik Prosa completa Alejandra Pizarnik Complete Prose by Alejandra Pizarnik on Audio
  • The Ancient Art of Tasseography How to Read Tea Leaves and Coffee Grounds by Kylie Holmes on Iphone
  • PDF EPUB Download Teaching the Mindful Self-Compassion Program A Guide for Professionals by Christ
  • Pdf ePub Love Inspired March 2025 Box Set - 1 of 2 by Emma Miller Allie Pleiter Linda Goodnight d
  • DOWNLOADS Looking for You A Novel by Alexander McCall Smith
  • Conan Cult of the Obsidian Moon by James Lovegrove on Audiobook New
  • Read online Fantastic Four The Ultimate Guide The Ultimate Guide to Marvels Original Superhero Famil
  • PDF Download Hungers Bite by Taylor Robin
  • pdf download The Bodyguard A Novel by Katherine Center
  • Read pdf The Knights Templar History Mystery by Tony McMahon
  • Halfway to Hell by William W. Johnstone J. A. Johnstone on Audiobook New
  • DOWNLOAD PDF EPUB The Genesis 6 Conspiracy Part II How Understanding Prehistory and Giants Helps D
  • Download PDF The Poisoner by I V Ophelia
  • Pdf ePub Honor Volume 3 Sky Ridge Hotshots by Danielle Baker download ebook
  • Can I Have a Hug First by Mary Paula Hunter on Ipad
  • PDF EPUB Download Asumi-chan is Interested in Lesbian Brothels Vol. 3 by Kuro Itsuki Full Book
  • PDF DOWNLOAD Cinema Her Way Visionary Female Directors in Their Own Words by Marya E. Gates ALEX
  • Read Pdf Five Years After A John Matherson Novel by William R. Forstchen
  • PDF EPUB Download Explorer Academy Vela The Sailor Cipher Book 1 by Trudi Trueit Khadijah Khatib
  • Caught Up Into Darkness Trilogy by Navessa Allen on Iphone New Format
  • PDF Hope The Autobiography by Pope Francis Jorge Mario Bergoglio Carlo Musso Richard Dixon
  • 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