My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub The Style of Loish Finding your artistic voice by Lois van Baarle download ebook
  • Read Pdf Los nombres de Feliza Felizas Names by Juan Gabriel Vásquez
  • Download Pdf Climatic Architecture Philippe Rahm architectes by Philippe Rahm
  • DOWNLOAD PDF EPUB Astronaut Hayleys Brave Adventure by Hayley Arceneaux Lucie Bee
  • epub download My Two Elaines Learning Coping and Surviving as an Alzheimers Caregiver by Martin J
  • download pdf Anxiously Attached Becoming More Secure in Life and Love by Jessica Baum
  • Online Read Ebook Pitcher Us by Mollie Goins
  • PDF EPUB Download No Rest for the Wicked by Kresley Cole Full Book
  • PDF Download Lonely Planet Experience Andalucia by Anna Kaminski Fiona Flores Watson Isabella No
  • PDF EPUB Download Beas Bad Day by Tom Percival Full Book
  • The Brightness Between Us by Eliot Schrefer on Audiobook New
  • PDF EPUB Download Squirrel Girl Universe A Marvel Heroines Novel by Tristan Palmgren Full Book
  • Lobizona A Novel by Romina Garber on Audiobook New
  • Un café en el fin del mundo by John Strelecky on Audiobook New
  • epub download The Duchess The Scandalous Ladies of London by Sophie Jordan
  • PDF Kindle Disney Moana 2 Big Golden Book by Golden Books Disney Storybook Art Team
  • PDF EPUB Download Want Sexual Fantasies by Anonymous by Gillian Anderson Full Book
  • download pdf The Valiant Must Fall Vol. 4 by Yu Aida
  • PDF Download Reckless by Elsie Silver
  • download pdf Management of a Novice Alchemist Volume 4 by Mizuho Itsuki fuumi Sean McCann
  • Read online Mister Impossible The Dreamer Trilogy 2 by Maggie Stiefvater
  • Online Read Ebook Private Revolutions Four Women Face Chinas New Social Order by Yuan Yang
  • DOWNLOAD PDF EPUB Heideggers Being and Time Paraphrased and Annotated by Thomas Sheehan Professor
  • DOWNLOADS The Two Jerusalems My Conversion from the Messianic Movement to the Catholic Church by Mat
  • PDF EPUB Download Between Never and Forever by Shain Rose Full Book
  • PDF EPUB Download Khadijah Story of Islams First Lady by Fatima Barkatulla Full Book
  • Download Pdf The Game Masters Book of Instant Towns and Cities 160 unique villages towns settlemen
  • PDF EPUB Download Collaborative Disruption The Walmart and Pg Partnership That Changed Retail Fore
  • Diablo Tales from the Horadric Library A Short Story Collection by Adam Foshko Delilah S. Dawson M
  • download pdf The Lede Dispatches from a Life in the Press by Calvin Trillin
  • PDF EPUB Download The Achilles Trap Saddam Hussein the C.I.A. and the Origins of Americas Invasion
  • epub download God of Ruin A Dark College Romance by Rina Kent
  • DOWNLOAD PDF EPUB Solitary Walker A Novel of Mary Wollstonecraft by N J Mastro
  • Read Pdf Draw Like a Mangaka The Complete Beginners Guide to Learning to Draw Manga by Marcel Kuhn
  • PDF ROLL OVER AND DIE I Will Fight for an Ordinary Life with My Love and Cursed Sword Manga Vol. 6
  • DOWNLOADS Frenzy 60 Stories of Sudden Sex by Alison Tyler
  • PDF Breaking the Code by Maria Lokken
  • One-Night Crush by Mia Heintzelman on Ipad
  • Read pdf The Royal Ranger Arazans Wolves by John Flanagan
  • Download PDF Glow of the Everflame by Penn Cole
  • Pdf ePub Uptime A Practical Guide to Personal Productivity and Wellbeing by Laura Mae Martin downlo
  • DOWNLOAD PDF EPUB The Art of DreamWorks Dog Man by Ramin Zahed Dav Pilkey Peter Hastings
  • PDF EPUB Download The Dangers of Smoking in Bed Stories by Mariana Enriquez Megan McDowell Full Boo
  • PDF EPUB Download Heaven and Hell by Jón Kalman Stefánsson Philip Roughton Full Book
  • Read Pdf Harry Potter The Mini Book of Wands by Jody Revenson Monique Peterson
  • Download PDF Boruto Two Blue Vortex Vol. 1 by Masashi Kishimoto Mikio Ikemoto
  • PDF Shelterwood by Lisa Wingate
  • PDF Kindle Deep End by Ali Hazelwood
  • PDF Kindle The Dating Coach Dilemma by Cristina Ryan
  • PDF Download The Upcycled Self A Memoir on the Art of Becoming Who We Are by Tariq Trotter
  • 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 22:13:25
Previous
Find pet by ID
Next
Update an existing pet
Built with