My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download Pdf Foster by Claire Keegan
  • Pdf ePub Story of Taylor Swift by Lindsey Sagar download ebook
  • Harlequin Intrigue March 2025 - Box Set 2 of 2 by Nicole Helm Maggie Wells Janice Kay Johnson on A
  • Read Pdf The Secret History of Audrey James A Novel by Heather Marshall
  • Download Pdf The Dangers in My Heart Vol. 10 by Norio Sakurai
  • DOWNLOADS Mail-Order Mistletoe Brides Christmas Hearts Mistletoe Kiss in Dry Creek by Jillian Hart
  • PDF Download The Apothecary Diaries Volume 13 Light Novel by Natsu Hyuuga Touko Shino Kevin Stei
  • Pdf ePub The Dark Coil Damnation by Peter Fehervari download ebook
  • Online Read Ebook David Buschs Sony Alpha a6700 ILCE-6700 Guide to Digital Photography by David D. B
  • Read online The Illegitimate Billionaire by Barbara Dunlop
  • DOWNLOADS A Theory of Dreaming Deluxe Limited Edition by Ava Reid
  • PDF Adaptive Rifle For Performance Shooting by Ben Stoeger Joel Park Lucas Batkin
  • Read Pdf Eat the World A Collection of Poems by Marina Diamandis
  • The Warriors Bride Alliance by Denise Lynn on Ipad
  • download pdf Lovely by Kris Starr
  • epub download The Underground Library A Novel by Jennifer Ryan
  • PDF EPUB Download Hidden Angels A completely addictive and pulse-pounding crime thriller by Carolyn
  • DOWNLOAD PDF EPUB Kinky Secrets of Alice in Wonderland by Melinda DuChamp
  • PDF DOWNLOAD Three Eight One by Aliya Whiteley on Iphone
  • PDF Download Power Girl Vol.2 More Than a Crush by Leah Williams Eduardo Pansica
  • PDF EPUB Download NSCAs Essentials of Sport Science by NSCA -National Strength Conditioning Associa
  • Wonder Woman Vol. 1 Outlaw by Tom King Daniel Sampere on Iphone New Format
  • DOWNLOAD PDF EPUB Our Plastic Problem A Call for Global Solutions by Megan Durnford
  • Read online Bride Wanted by Renee Andrews
  • PDF Download The Sun Sister A Novel by Lucinda Riley
  • Download Pdf Born in a Small Town by Debbie Macomber Judith Bowen Janice Kay Johnson
  • Download Pdf Neighbor by Lisa Gardner
  • Theres Treasure Inside by Jon Collins-Black on Iphone New Format
  • DOWNLOAD PDF EPUB Blue Skies A Novel by T. C. Boyle
  • PDF EPUB Download Feeling Happy The Yoga of Body Heart and Mind by Richard Freeman Mary Taylor
  • Read Pdf Jurassic Park The Ultimate Visual History by James Mottram Sam Neill Laura Dern Jeff G
  • Read pdf AP Calculus Premium 2025 Prep Book with 12 Practice Tests Comprehensive Review Online
  • Pdf ePub Space Piracy Preparing for a Criminal Crisis in Orbit by Marc Feldman Hugh Taylor Eric F
  • Read pdf Holly A Belladonna Novella by Adalyn Grace
  • PDF EPUB Download DC Finest Harley Quinn Birth of the Mirth by Paul Dini Bruce Timm Karl Kesel F
  • EdTech Essentials 12 Strategies for Every Classroom in the Age of AI by Monica Burns on Ipad
  • PDF Download The Amish Widows New Love by Liz Tolsma
  • Read online Holly A Belladonna Novella by Adalyn Grace
  • Read pdf How To Cook Everything Kids by Mark Bittman
  • Read pdf When Religion Hurts You Healing from Religious Trauma and the Impact of High-Control Reli
  • DOWNLOADS Red Rabbit by Alex Grecian
  • epub download Playground by Aron Beauregard
  • PDF Download Pathfinder RPG Guns Gears Remastered Special Edition P2 by Michael Sayre Mark Seift
  • PDF EPUB Download Someone to Trust and Her Forbidden Amish Love by Patricia Davids Jocelyn McClay
  • DOWNLOADS Hard to Judge A Dark MMF Billionaire Romance by Meg Everly
  • PDF DOWNLOAD The Squad A Graphic Novel The Tryout 2 by Christina Soontornvat Joanna Cacao on Ipho
  • El lamento de Sally Un giro inesperado Sallys Lament El extra o mundo de Jack by Mari Mancusi on I
  • Online Read Ebook Not Who We Expected by Lisa Black
  • PDF EPUB Download Bake With Brooki by Brooke Bellamy Full Book
  • The Surgeon by Leslie Wolfe on Iphone New Format
  • 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