My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • The Princeton Field Guide to Predatory Dinosaurs by Gregory S. Paul on Ipad
  • PDF EPUB Download The Amish Spinsters Courtship and Her New Amish Family by Emma Miller Carrie Li
  • Read Pdf Los nombres de Feliza Felizas Names by Juan Gabriel Vásquez
  • Read online Just a Hint -- Clint by Lori Foster
  • Oyster Perpetual Submariner The Watch that Unlocked the Deep by Nicholas Foulkes on Ipad
  • DOWNLOAD PDF EPUB USMLE Step 1 Qbook by Kaplan Medical
  • DOWNLOAD PDF EPUB The Do-Over by Lynn Painter
  • PDF DOWNLOAD The Art of Sam Yang by Sam Yang 3dtotal Publishing on Iphone
  • Framed Environment Design by Marcos Mateu-Mestre on Ipad
  • PDF EPUB Download The Dare by Harley Laroux Full Book
  • PDF EPUB Download Unexpected Father Legally Binding by Delores Fossen Ann Voss Peterson Full Book
  • Read Pdf An Unlikely Amish Match and An Amish Arrangement by Vannetta Chapman Jo Ann Brown
  • PDF From Trenton to Yorktown Turning Points of the Revolutionary War by John R. Maass
  • Online Read Ebook A Dragon of Black Glass by James Rollins
  • Download Pdf AFTER The Graphic Novel Volume Two by Anna Todd
  • Read pdf Survival in Another World with My Mistress Manga Vol. 1 by Ryuto Sasayuki Yappen
  • PDF EPUB Download A Dark and Hollow Star by Ashley Shuttleworth Full Book
  • PDF Download Duty to Protect by Lisa Phillips Carol J. Post
  • PDF EPUB Download JoJos Bizarre Adventure Part 6--Stone Ocean Vol. 8 by Hirohiko Araki Full Book
  • PDF EPUB Download The Crown of Gilded Bones by Jennifer L. Armentrout Full Book
  • epub download Baby Let It Snow by Beverly Jenkins Elaine Overton
  • epub download 100 Years of Planetaria 100 Stories of People Places and Devices by Matthew McMahon
  • Colorful Crochet Birds 19 Amigurumi Patterns to Create Feathered Friends by Ilaria Caliri on Audiobo
  • Pdf ePub 2024 2025 ASVAB For Dummies 7 Practice Tests Flashcards Videos Online by Angie Papple
  • pdf download The Lucky Ones A Memoir by Zara Chowdhary
  • PDF EPUB Download Delve Pivot Propel 350 Writing Secrets to Elevate Your Storytelling and Transf
  • PDF Advocate A Graphic Memoir of Family Community and the Fight for Environmental Justice by Eddi
  • Read pdf The Boyhood of Cain by Michael Amherst
  • Collected Works of Josef Stalin Volume 3 by Josef V Stalin on Iphone New Format
  • Read online Ring of Solomon by Aden Polydoros
  • DOWNLOADS Shock Induction by Chuck Palahniuk
  • pdf download Fire in His Fingertips A Flirty Fireman Ravishes Me with His Smoldering Gaze Vol. 4 by
  • Download Pdf It Lasts Forever and Then Its Over by Anne de Marcken
  • Online Read Ebook All Fours by Miranda July
  • PDF A Home of Her Own by Keli Gwyn
  • pdf download Souvenirs from an Absurd Life A Memoir by Don Dahler
  • epub download The Sentinel by Lee Child Andrew Child
  • Pdf ePub La riada The Flood by Michael McDowell Ph.D download ebook
  • Read online Open Season An Alex Delaware Novel by Jonathan Kellerman
  • pdf download To Sir Phillip With Love and When He Was Wicked Bridgerton Collectors Edition by Julia
  • Pdf ePub Dinosaurium Poster Book by Lily Murray Chris Wormell download ebook
  • PDF The Soros Agenda by Rachel Ehrenfeld
  • Online Read Ebook I Am the Cage by Allison Sweet Grant
  • The Fall by Albert Camus on Ipad
  • Pdf ePub Curio Citizen by Katherine Forrister download ebook
  • DOWNLOAD PDF EPUB Disciples of Chaos by M.K. Lobb
  • PDF Kindle The Uncomfortable Truth About Money How to live with uncertainty and think for yourself
  • DOWNLOADS BOREAL An Anthology of Taiga Horror by Katherine Silva
  • Download PDF Rapport The Four Ways to Read People by Laurence Alison Emily Alison
  • PDF Kindle El mago del Kremlin by Giuliano da Empoli Adolfo García Ortega
  • 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 21:13:25
Previous
Find pet by ID
Next
Update an existing pet
Built with