My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOADS Something Good by Kenneth Kraegel
  • Download PDF The Deep Dark A Graphic Novel by Molly Knox Ostertag
  • PDF His Convenient Royal Bride by Cara Colter
  • Read Pdf Succubus and Hitman Vol. 6 by Makoto Fukami Seigo Tokiya
  • epub download The Hard Way by Carol Lea Benjamin
  • The Housemate by Sarah Bailey on Iphone New Format
  • PDF DOWNLOAD You with a View by Jessica Joyce on Iphone
  • Read pdf Flock by Kate Stewart
  • Download Pdf How to Fix a Broken Heart by Guy Winch
  • epub download The Wizard of Oz by L. Frank Baum William Wallace Denslow
  • I Died for Beauty by Amanda Flower on Iphone New Format
  • PDF Download The Ballad of Smallhope and Pennyroyal Meet your favourite new partners-in-crime in 2
  • Read online We Who Wrestle with God Perceptions of the Divine by Jordan B. Peterson
  • Disclaimer by Renée Knight on Ipad
  • Pdf ePub Cozy Cuties Coloring Book for Adults and Kids by Coco Wyo download ebook
  • PDF Kindle The Science of Weird Shit Why Our Minds Conjure the Paranormal by Chris French Richard
  • AI Engineering Building Applications with Foundation Models by Chip Huyen on Audiobook New
  • pdf download Overwatch Declassified - An Official History by Seanan McGuire
  • DOWNLOADS Swift and Saddled A Rebel Blue Ranch Novel by Lyla Sage
  • Read Pdf A Heros Promise by Lee Tobin McClain Kathryn Springer
  • download pdf Anxious People by Fredrik Backman
  • Download PDF J.K. Lassers Your Income Tax 2025 Professional Edition by J.K. Lasser Institute
  • Pdf ePub Lasagna Means I Love You by Kate OShaughnessy download ebook
  • PDF DOWNLOAD Smooth-Talking Texan by Candace Camp on Iphone
  • Read online Pen and Ink Drawing Techniques Steps subjects prompts by David Morales H.
  • epub download Ghassan Kanafani Selected Political Writings by Ghassan Kanafani Louis Brehony Tahri
  • Download PDF Destiny The Official Cookbook by Victoria Rosenthal
  • Online Read Ebook The Travel Bucket List by DK Travel
  • DOWNLOAD PDF EPUB The Lost House A Novel by Melissa Larsen
  • Solitary Walker A Novel of Mary Wollstonecraft by N J Mastro on Audiobook New
  • Read online The Barn The Secret History of a Murder in Mississippi by Wright Thompson
  • Meaning A Very Short Introduction by Emma Borg Sarah A. Fisher on Iphone New Format
  • PDF DOWNLOAD Are You There God Its Me In Menopause An Unfiltered Honest Guide to Midlife Hormon
  • PDF EPUB Download Peculiar Baking A Practical Guide to Strange Confections by Nikk Alcaraz Full Book
  • Pdf ePub Uncomfortable Conversations with a Jew by Emmanuel Acho Noa Tishby download ebook
  • PDF DOWNLOAD A Slash of Emerald by Patrice McDonough on Iphone
  • Read pdf Runaway Horses by Carlo Fruttero Franco Lucentini Gregory Dowling
  • PDF Kindle Better Than the Movies by Lynn Painter
  • Justice Love and Organizational Healing A Guide to Transformational Consulting by Ora C. Grodsky o
  • PDF Download Pitcher Us by Mollie Goins
  • DOWNLOAD PDF EPUB Outbride Beauty and the Beasts Vol. 6 by Tohko Tsukinaga
  • PDF DOWNLOAD Gertrude Abercrombie The Whole World Is a Mystery by Gertrude Abercrombie Eric Crosb
  • PDF DOWNLOAD Adaptive Rifle For Performance Shooting by Ben Stoeger Joel Park Lucas Batkin on Ip
  • PDF Theres Always Divorce by N.E.L
  • Read pdf Blue Jerusalem British Conservatism Winston Churchill and the Second World War by Kit K
  • Online Read Ebook Blue Lock Volume 17 by Muneyuki Kaneshiro Yusuke Nomura
  • PDF Kindle Enemy Feminisms TERFs Policewomen and Girlbosses Against Liberation by Sophie Lewis
  • PDF EPUB Download Skeletown Hola. Adiós by Rhode Montijo Full Book
  • PDF Inmemorial Dos corazones. Un mismo latido Inmemorial Two Hearts One Heartbe at by PHAVY PRIE
  • pdf download World War II Memoirs The European Theater LOA 385 by Charles B. Macdonald Elizabeth D.
  • 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-10 22:47:15
Previous
Find pet by ID
Next
Update an existing pet
Built with