My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download Casualties of Truth by Lauren Francis-Sharma Full Book
  • Online Read Ebook The Villainess Turns the Hourglass Vol. 6 by Antstudio
  • PDF Download Diary of a Wimpy Kid Book 12 by Jeff Kinney
  • download pdf The Serial Killer Next Door by Emma Kenny
  • PDF EPUB Download Where the Wild Things Were Boyhood and Permissive Parenting in Postwar America b
  • Pdf ePub The Devil and Mrs. Davenport A Novel by Paulette Kennedy download ebook
  • Read online Reading Nature The Evolution of American Nature Writing by John Seibert Farnsworth
  • Online Read Ebook Fragile Sanctuary Deluxe Edition by Catherine Cowles
  • Download Pdf Bucks Step-by-Step Medical Coding 2025 Edition by Elsevier Inc Elsevier Jackie Koest
  • Online Read Ebook What to Do When You Feel Broken How to Let Go of Negative Patterns Heal Your Rela
  • Pdf ePub Its Not You Identifying and Healing from Narcissistic People by Ramani Durvasula PhD downl
  • Read online Shes Just Like Me by Jamika Banks
  • PDF Too Close to Home by Lynette Eason
  • epub download Dip My Brain in Joy A Life with Neil Innes The Official Biography by Yvonne Innes
  • PDF EPUB Download Why We Die The New Science of Aging and the Quest for Immortality by Venki Ramakri
  • Download PDF Imperfect Solidarities by Aruna DSouza
  • DOWNLOAD PDF EPUB A Year of Living Curiously 365 Things Really Worth Knowing by Elizabeth Foley B
  • PDF Download Israels Black Panthers The Radicals Who Punctured a Nations Founding Myth by Asaf Eli
  • Read Pdf Faefever by Karen Marie Moning
  • Pdf ePub Dont Believe Everything You Think Expanded Edition Why Your Thinking Is The Beginning End
  • Read online Big Vegan Flavor Techniques and 150 Recipes to Master Vegan Cooking by Nisha Vora
  • How to Win at Chess The Ultimate Guide for Beginners and Beyond by Levy Rozman on Ipad
  • PDF EPUB Download The Great Mental Models Volume 1 General Thinking Concepts by Shane Parrish Rhia
  • PDF DOWNLOAD Woman Hating by Andrea Dworkin on Iphone
  • download pdf Closer Together Knowing Ourselves Loving Each Other by Sophie Grégoire Trudeau
  • PDF Download The Ghosts of Rome The Rome Escape Line Trilogy 2 by Joseph OConnor
  • Bake With Brooki by Brooke Bellamy on Ipad
  • PDF EPUB Download Greenteeth by Molly ONeill Full Book
  • Dork Diaries 16 Tales from a Not-So-Bratty Little Sister by Rachel Renée Russell on Iphone New Forma
  • United States Currency by Kenneth E. Bressett Q David Bowers Patrick Perez on Ipad
  • Pdf ePub DEN Volume 5 The Price of Memories by Richard Corben download ebook
  • epub download Claiming His Brothers Baby by Helen Lacey
  • PDF EPUB Download The Next Deadly Chapter by V. M. Burns Full Book
  • The Only Thing Id Do in a No-Boys-Allowed Game World Vol. 1 novel Reincarnated as a Yuri Ship-Sinke
  • pdf download EC Covers Artisan Edition by Wally Wood
  • Read Pdf Song So Wild and Blue A Life with the Music of Joni Mitchell by Paul Lisicky
  • PDF DOWNLOAD The Texas Murders A Texas Ranger Thriller by James Patterson Andrew Bourelle on Ipho
  • DOWNLOAD PDF EPUB Mastering Transformers - Second Edition The Journey from BERT to Large Language
  • DOWNLOAD PDF EPUB The New Kingdom The New Kingdom by Wilbur Smith
  • Read Pdf Writing Jazz Conversations with Critics and Biographers by Sascha Feinstein
  • PDF Kindle In Sunshine or in Shadow A Molly Murphy Mystery by Rhys Bowen Clare Broyles
  • DOWNLOAD PDF EPUB The Cowboy Father and Frontier Father by Linda Ford Dorothy Clark
  • epub download Whos Afraid of Gender by Judith Butler
  • PDF Download Los dos hemisferios de Lucca Luccas World by Bárbara Anderson
  • Download Pdf Warriors A Starless Clan 3 Shadow by Erin Hunter
  • Download PDF The Evil Creator Origins of an Early Christian Idea by M. David Litwa
  • DOWNLOADS Pink Heart Jam Vol. 2 by Shikke
  • epub download Be More Moo Deng The Unofficial Coloring Book by DK
  • Semantic Error comic Vol. 1 by Angy on Ipad
  • download pdf Same as Ever A Guide to What Never Changes by Morgan Housel
  • 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-08 01:42:30
Previous
Find pet by ID
Next
Update an existing pet
Built with