My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • pdf download Twilight Deluxe Collectors Edition by Stephenie Meyer
  • PDF Kindle Jack Carr Boxed Set The Terminal List True Believer and Savage Son by Jack Carr
  • epub download Presidents at War How World War II Shaped a Generation of Presidents from Eisenhower
  • PDF EPUB Download Against Progress by Slavoj Zizek Full Book
  • Download Pdf Pornography Men Possessing Women by Andrea Dworkin
  • A Family Friend There was only one man Sammy could turn to. by Casey Watson on Iphone New Format
  • PDF Download Whats Your Favorite Animal by Eric Carle
  • Download Pdf The Viscounts Unconventional Lady A Steamy Historical Romance Book by Virginia Heath
  • Pummel the Devil A Biblical Foundation for Spiritual Warfare by Daniel Duval on Audiobook New
  • PDF DOWNLOAD A Good Girls Guide to Murder Complete Series Paperback Boxed Set A Good Girls Guide t
  • Online Read Ebook The Apocalypse of the Birds 1 Enoch and the Jewish Revolt against Rome by Elena L
  • PDF EPUB Download The Most by Jessica Anthony Full Book
  • PDF Analytic Idealism in a Nutshell A straightforward summary of the 21st centurys only plausible m
  • epub download The Museum Heist A Mystery Agency Puzzle Book by Henry Lewis
  • Online Read Ebook A Terrified Teacher at Ghoul School Vol. 15 by Mai Tanaka Amanda Haley
  • PDF EPUB Download Can You Imagine The Art and Life of Yoko Ono by Lisa Tolin Yas Imamura Full Boo
  • Pdf ePub You Will be Able to Draw by the End of this Book Ink by Jake Spicer download ebook
  • Read online Modern Libertarianism A Brief History of Classical Liberalism in the United States by Br
  • Download PDF Her Holiday Lawman by Ruth Logan Herne Mindy Obenhaus
  • Winning Olivias Heart by Mary Davis on Audiobook New
  • USS Arizona BB-39 From Keel Laying to Pearl Harbor Memorial by David Doyle on Audiobook New
  • PDF EPUB Download Whole Life Sentence by Lynda La Plante Full Book
  • Left Is Not Woke by Susan Neiman on Audiobook New
  • Download Pdf The Dead Romantics by Ashley Poston
  • Read pdf Villains Are Destined to Die Vol. 7 by SUOL AH Cho David Odell
  • Download Pdf The Kings Weapon by Neena Laskowski
  • Download Pdf Blackmailed into the Marriage Bed by Melanie Milburne
  • PDF Cursebound A Novel by Saara El-Arifi
  • PDF Sweet Tooth 100 Desserts to Save Room For A Baking Book by Sarah Fennel
  • Read online A Good Life 15 Essential Habits for Living with Hope and Joy by Pope Francis
  • Online Read Ebook Vagabondo by Paul Freeman
  • PDF DOWNLOAD Cold Case Murder Mystery by Nicole Helm on Iphone
  • PDF EPUB Download The Düngeonmeister RPG Sticker Book 500 Stickers to Level Up Your Campaign by Je
  • I Cross-Dressed for the IRL Meetup 3 by Kurano on Ipad
  • PDF Download A Husband for Christmas by Gail Gaymer Martin
  • Read pdf Her Best Friend the Duke by Laura Martin
  • Online Read Ebook The Apothecary Diaries Volume 13 Light Novel by Natsu Hyuuga Touko Shino Kevin S
  • Pdf ePub Why England Slept by John F. Kennedy Henry R. Luce download ebook
  • Download Pdf How to Solve Your Own Murder A Novel by Kristen Perrin
  • DOWNLOAD PDF EPUB The Art of Disagreeing How to Keep Calm and Stay Friends in Hard Conversations b
  • pdf download Love in Bloom by Tara Conrad Willow Winters Lydia Michaels M. Robinson
  • pdf download At the Wolfs Table by Rosella Postorino Leah Janeczko
  • PDF Macbeth A Norton Critical Edition by William Shakespeare Robert S. Miola
  • PDF Download Arctic Knits Jumpers Socks Mittens and More by Weichien Chan
  • Accomplice to the Villain by Hannah Nicole Maehrer on Audiobook New
  • Read pdf Love Letters from the Trail by Tif Marcelo
  • epub download Creep A Love Story by Emma van Straaten
  • Download Pdf Prometeo Americano American Prometheus by Kai Bird Martin J. Sherwin
  • PDF DOWNLOAD Death of the Author by Nnedi Okorafor on Iphone
  • Online Read Ebook Sad Planets by Dominic Pettman Eugene Thacker
  • 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