My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Solvable How We Healed the Earth and How We Can Do It Again by Susan Solomon on Ipad
  • PDF Kindle Tell Me What You Did A Novel by Carter Wilson
  • PDF Kindle Im Your Man A Love Song by Emma Braslavsky Holly Yanacek
  • PDF Download Notes on Surviving the Fire A Novel by Christine Murphy
  • Read online The World After the Fall Vol. 9 by Undead Gamja Undead Ttalgi3B2S Undead Ttalgi3B2S ST
  • epub download Prophet Song Booker Prize Winner by Paul Lynch
  • Read pdf The Forgive for Good Recovery Workbook Overcome Addiction Heal Your Past and Find Peace
  • Read pdf The Big Book of Drawing Anime The Complete Step-by-Step Guide by Christopher Hart
  • download pdf One Piece Vol. 107 by Eiichiro Oda
  • PDF EPUB Download LIAR by Tate James Full Book
  • PDF Download The Kings Weapon by Neena Laskowski
  • Read pdf Hildegard von Bingen A Journey into the Images by Hildegard von Bingen Sara Salvadori
  • PDF Download Structure and Synthesis The Anatomy of Practice by
  • PDF DOWNLOAD The Unveiled Tarot An 80-Card Deck and Guidebook by Jesse Lonergan Mike Mignola on I
  • DOWNLOAD PDF EPUB Truth and Measure by Roslyn Sinclair
  • Red Dead Redemption 2 The Complete Official Guide Standard Edition by Piggyback on Iphone New Format
  • Download Pdf PHP MySQL Server-side Web Development by
  • Read pdf Shes Always Hungry Stories by Eliza Clark
  • PDF Halo Empty Throne by Jeremy Patenaude
  • epub download Sirens Muses A Novel by Antonia Angress
  • DOWNLOAD PDF EPUB Random in Death An Eve Dallas Novel by J. D. Robb
  • Read Pdf The Official Guide to Randonautica Everything You Need to Know about Creating Your Random
  • Read pdf The Deep Dark A Graphic Novel by Molly Knox Ostertag
  • The Margraves Daughter the Enemy Prince Volume 1 by An Ogura on Iphone New Format
  • Download PDF The Wrong Earth Dead Ringers by Tom Peyer Jamal Igle Juan Castro
  • The Netter Collection of Medical Illustrations Complete Package by Frank H. Netter MD on Audiobook N
  • PDF EPUB Download No Saint by Donna Alam Full Book
  • PDF The Metabarons Second Cycle Finale by Alejandro Jodorowsky Pete Woods Jerry Frissen
  • Read online Oathbound by Tracy Deonn
  • PDF Do Interesting Notice. Collect. Share. by Russell Davies
  • Online Read Ebook Caídos del cielo 60 aniversario de Alfaguara Fallen from the Sky by Ray Loriga
  • PDF EPUB Download Diversity Equity and Inclusion in Veterinary Medicine by Kemba Marshall Full B
  • Online Read Ebook Plain Secrets by Kit Wilkinson
  • Pdf ePub Normal People A Novel by Sally Rooney download ebook
  • epub download Archetypal Astrology Oracle A 55-Card Deck and Guidebook by Jonathan Waller
  • DOWNLOADS The Ax by Donald E. Westlake
  • Pdf ePub The Ancient Art of Tasseography How to Read Tea Leaves and Coffee Grounds by Kylie Holmes
  • Download PDF Where the Wild Things Were Boyhood and Permissive Parenting in Postwar America by Henry
  • Read pdf Asumi-chan is Interested in Lesbian Brothels Vol. 3 by Kuro Itsuki
  • download pdf Disney Manga Tim Burtons The Nightmare Before Christmas - Zeros Journey Ultimate Full-
  • PDF Blossom Origami by Clover Robin
  • PDF Kindle Here One Minute by Alex Lake
  • Read Pdf Hungerstone by Kat Dunn
  • DOWNLOADS The Temporary Mrs. Marchetti by Melanie Milburne
  • pdf download The Tower A Novel by Flora Carr
  • Download Pdf Toxicity to Triumph Navigating Work with Emotional Intelligence and a Growth Mindset by
  • PDF The Little Big Book of Legs by
  • Download Pdf Trinity Puglias Son by Steven Zizza
  • Pdf ePub Stables Book 2 of the Black Gulch Ranch Series by M. A. Cobb download ebook
  • Download Pdf The Book of Practical Witchcraft A Compendium of Spells Rituals and Occult Knowledge b
  • 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-09 01:03:40
Previous
Find pet by ID
Next
Update an existing pet
Built with