My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOAD PDF EPUB A Spell for Heartsickness A Cozy Romantasy by Alistair Reeves
  • Read Pdf Threshold to Valley Forge The Six Days of the Gulph Mills Encampment by Sheilah D. Vance
  • PDF DOWNLOAD From the Belly of a Blue Whale by B. Z. Rose on Iphone
  • PDF EPUB Download The Dead We Honor by William W. Johnstone J. A. Johnstone Full Book
  • Read online Brave Buzzy Bee by Rima Fakih Slaiby Theresa AlHayek Angela Li
  • epub download Harlequin Intrigue March 2025 - Box Set 2 of 2 by Nicole Helm Maggie Wells Janice Ka
  • Deadly Obsession by Katie Reus on Audiobook New
  • DOWNLOAD PDF EPUB John Kenn Mortensens Nightmare Factory by John Kenn Mortensen
  • DOWNLOADS True Beauty Volume Three A WEBTOON Unscrolled Graphic Novel by Yaongyi
  • DOWNLOADS The Ghosts of Rome The Rome Escape Line Trilogy 2 by Joseph OConnor
  • Theory Practice A Novel by Michelle de Kretser on Ipad
  • Lunar New Year Love Story by Gene Luen Yang LeUyen Pham on Iphone New Format
  • DOWNLOADS NCLEX-RN Content Review Guide Preparation for the NCLEX-RN Examination by Kaplan Nursing
  • pdf download 365 Days of Drawing People by Lise Herzog
  • Download Pdf Lore by Alexandra Bracken
  • pdf download Promise Me Not by Meagan Brandy
  • PDF What the Rabbis Know That I Never Learned in Church by Chaim Bentorah
  • PDF EPUB Download The Amish Nurses Suitor and The Nannys Amish Family by Carrie Lighte Patricia Joh
  • PDF The Party Line by Carolyn Brown
  • Read pdf Kiss the Sky by Krista Ritchie Becca Ritchie
  • Online Read Ebook Gargoyles Dark Ages by Greg Weisman F. Wesley Schneider Drew Moss
  • Read pdf This Time Its Real by Ann Liang
  • Download Pdf Someones Girlfriend Vol. 2 by Nikumaru
  • DOWNLOADS Pessimism Quietism and Nature as Refuge by David E. Cooper
  • PDF The Rule Book A Novel by Sarah Adams
  • Here One Moment by Liane Moriarty on Ipad
  • Read online The National Telepathy by Roque Larraquy Frank Wynne
  • Read pdf The Unquiet Bones A Novel by Loreth Anne White
  • Read online A Sky Full of Kites A Rewilding Story by Tom Bowser
  • Journey Mirror A Journal of Inner Love Kindness and Authenticity by Tia Blue Burrell K. B. Whitake
  • PDF EPUB Download The Alliance Saga - Clouded Moon 1 Shifting Roots by Avalon Roselin Tennelle Fl
  • PDF DOWNLOAD Thucydides A Very Short Introduction by Jennifer T. Roberts on Iphone
  • Read pdf La tormenta Edición limitada cantos pintados The Reaper Limited Edition Sprayed Edges
  • PDF DOWNLOAD Tokyo Revengers Omnibus Vol. 19-20 by Ken Wakui on Iphone
  • PDF Skyshade The Lightlark Saga Book 3 by Alex Aster
  • PDF The Reluctant Witness by Kathleen Tailer
  • DOWNLOAD PDF EPUB I Want You to Be Happy Finding Peace and Abundance in Everyday Life by Pope Fran
  • Download Pdf The Rainbow Fish Bilibri - Eng Korean PB by Marcus Pfister
  • PDF Download Lucky Girl Family Falling and Finding My Way by Lottie Tomlinson
  • DOWNLOAD PDF EPUB Aftermath Star Wars Aftermath Trilogy 1 by Chuck Wendig
  • PDF After the Storm by G. D. Wright
  • Read online Earthlings A Novel by Sayaka Murata Ginny Tapley Takemori
  • LEGO Ninjago 5-Minute Stories LEGO Ninjago by Random House on Ipad
  • pdf download British Pottery The First 3000 Years Ceramic Art in the Neolithic and Early Bronze Age
  • PDF EPUB Download Yours Truly by Abby Jimenez Full Book
  • Download PDF Deck the Halls and His Christmas Bride by Arlene James Dana Corbit
  • pdf download The Unicorn Project A Novel about Developers Digital Disruption and Thriving in the A
  • Read pdf Manifest 7 Steps to Living Your Best Life by Roxie Nafousi
  • Download Pdf The Ranchers Secret Son by Betsy St. Amant
  • Read Pdf Second Sister A Novel by Chan Ho-Kei Jeremy Tiang
  • 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-07 11:42:40
Previous
Find pet by ID
Next
Update an existing pet
Built with