My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download The Pumpkin Spice Café Dream Harbor Book 1 by Laurie Gilmore Full Book
  • Forward As Always by Olan Rogers Jake Sidwell Jim Krueger on Ipad
  • DOWNLOADS The Harvard Murders by Robert J Mrazek
  • PDF The Sea of Terror by Stuart Gibbs Chris Choi
  • DOWNLOADS Definitely Better Now A Novel by Ava Robinson
  • PDF EPUB Download Heroine Saint No Im an All-Works Maid And Proud of It Manga Vol. 2 by Atekichi K
  • Download Pdf The Soros Agenda by Rachel Ehrenfeld
  • PDF EPUB Download Thieves by Lucie Bryon Full Book
  • Download Pdf Kiss of the Basilisk Deluxe Edition A Split or Swallow Novel by Lindsay Straube
  • PDF Kindle Midnight on the Scottish Shore A Novel of World War II by Sarah Sundin
  • Download PDF RSN Stitch Bank 200 Essential Embroidery Stitches by The Royal School of Needlework Su
  • Read online My Sister Took My Fiancé and Now Im Being Courted by a Beastly Prince Manga Vol. 3 by Yu
  • Online Read Ebook Disney Princess Explore the Castles Activity Book With Over 500 Stickers by IglooB
  • DOWNLOAD PDF EPUB The War on Men Why Society Hates Them and Why We Need Them by Owen Strachan
  • Gris Artbook by Nomada Studio on Iphone New Format
  • epub download Losing the Garden The Story of a Marriage a Suicide and a New Life of Self-Discovery
  • My BIG Playbook Farm by Ingela P. Arrhenius on Ipad
  • PDF Knife Drop Creative Recipes Anyone Can Cook by Nick DiGiovanni Gordon Ramsay
  • Download Pdf Out of Circulation A Village Library Mystery 11 by Elizabeth Spann Craig
  • PDF Kindle Mega Man X Maverick Hunters Field Guide by David Oxford Nadia Oxford Capcom Jeffrey C
  • Online Read Ebook The Queens of Crime A Novel by Marie Benedict
  • PDF Witchcraft A History in Thirteen Trials by Marion Gibson
  • Download Pdf Summer Gets to Work American Girl Girl of the Year 2025 by Clare Hutton Maike Plenzke
  • PDF EPUB Download Its a Love Skate Relationship by Carli J. Corson Full Book
  • PDF Kindle Nothing to Hide 2. Young Men from Slovakia by Phil Dlab
  • Max in the House of Spies A Tale of World War II by Adam Gidwitz on Iphone New Format
  • pdf download Diagnosing Whiteness Anti-Blackness White Psychopathology Collective Psychosis and T
  • Manual of Biogenic House Sections Materials and Carbon by Paul Lewis Marc Tsurumaki David J. Lewis
  • PDF EPUB Download Not Your Biggest Fan by Sara Ney Full Book
  • PDF Download A Long Time Gone A Novel by Joshua Moehling
  • PDF Mihi Ever After Home Sweet Home by Tae Keller Geraldine Rodríguez
  • PDF Download Please Go Home Miss Akutsu Vol. 7 by Taichi Nagaoka
  • Pdf ePub Platform Engineering A Guide for Technical Product and People Leaders by Camille Fournie
  • Princeton Review AP Statistics Prep 20th Edition 5 Practice Tests Complete Content Review Strateg
  • PDF EPUB Download Quest for the Hidden City Star Wars The High Republic by George Mann Full Book
  • 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