My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • download pdf The Latinx Guide to Liberation Healing from Historical Generational and Individual T
  • pdf download Courting Holly by Lynn A. Coleman
  • PDF For Love of a Dog by Janice Carter
  • PDF DOWNLOAD Heavenly Bodies by Imani Erriu on Iphone
  • Read online Moroccan Cookbook Exploring the Food of a Timeless Cuisine by Ghillie Basan
  • PDF DOWNLOAD The Complete Birds of the World Every Species Illustrated by Norman Arlott Ber van P
  • PDF Download The Summer I Turned Pretty by Jenny Han
  • Download Pdf From the Belly of a Blue Whale by B. Z. Rose
  • PDF The Bloodied Nightgown and Other Essays by Joan Acocella
  • download pdf No Place to Bury the Dead A Novel by Karina Sainz Borgo Elizabeth Bryer
  • PDF Download Rat City Overcrowding and Urban Derangement in the Rodent Universes of John B. Calhou
  • PDF Download The Betrayal Bind How to Heal When the Person You Love the Most Hurts You the Worst b
  • Read pdf Neurodiversity Coaching A Psychological Approach to Supporting Neurodivergent Talent and
  • The Ballerina of Auschwitz Young Adult Edition of The Choice by Edith Eva Eger on Audiobook New
  • DOWNLOADS The 5 Principles of Parenting Your Essential Guide to Raising Good Humans by Aliza Pressma
  • pdf download North and South by Elizabeth Gaskell
  • Pdf ePub Christian America and the Kingdom of God White Christian Nationalism from the Puritans thr
  • download pdf A Guide Book of United States Coins 2026 Official Red Book by R S Yeoman John Feigenb
  • Read pdf The Knight and the Moth by Rachel Gillig
  • Download Pdf Highland Knight by Hannah Howell
  • DOWNLOAD PDF EPUB Among Serpents by Marc J Gregson
  • Online Read Ebook Moroccan Cookbook Exploring the Food of a Timeless Cuisine by Ghillie Basan
  • PDF Download Shadows of the Past by ML Rose
  • DOWNLOAD PDF EPUB Word Search Challenge 100 Puzzles to do anywhere anytime by Roland Hall
  • Seven Things You Cant Say About China by Tom Cotton on Audiobook New
  • epub download Harry Potter and the Sorcerers Stone by J. K. Rowling Mary GrandPré
  • Read Pdf Monstrilio by Gerardo Sámano Córdova
  • DOWNLOAD PDF EPUB The House of Eve by Sadeqa Johnson
  • Download Pdf The Wars of the Roses The Medieval Art of Graham Turner by Graham Turner
  • download pdf Mirabelle and the Baby Dragons by Harriet Muncaster
  • Read online Magic Stone Gourmet Eating Magical Power Made Me the Strongest Volume 8 Light Novel by R
  • Download PDF George Yeo Musings - Series One by George Yong-boon Yeo Tai Ho Woon
  • Pdf ePub The Reluctant Guardian by Susanne Dietze download ebook
  • DOWNLOAD PDF EPUB A Domestic Cook Book Containing a Careful Selection of Useful Receipts for the K
  • PDF Download Los dos hemisferios de Lucca Luccas World by Bárbara Anderson
  • DOWNLOAD PDF EPUB Unhumans The Secret History of Communist Revolutions and How to Crush Them by Ja
  • Read pdf The Warriors Bride Alliance by Denise Lynn
  • What a Run Inside the Philadelphia Eagles Unforgettable 2024 Championship Season by The Philadelphia
  • Read online If I Must Die Poetry and Prose by Refaat Alareer Yousef M. Aljamal Susan Abulhawa
  • Read pdf Bride Wanted by Renee Andrews
  • Download Pdf Its Only a Game by Kelsea Yu
  • Mangatopia Sea Creatures An Underwater Coloring Book of Anime and Manga by Liv Wan on Iphone New For
  • Read Pdf Boys Weekend by Mattie Lubchansky
  • DOWNLOADS Lady Nightmare by Rachel M. Yoldi
  • Read pdf Fireborn Phoenix and the Frost Palace by Aisling Fowler
  • Read online The World After the Fall Vol. 9 by Undead Gamja Undead Ttalgi3B2S Undead Ttalgi3B2S ST
  • PDF EPUB Download Fairy Tale Tarot by Lisa Hunt Full Book
  • Online Read Ebook Milo Manara - The Definitive Collection by Milo Manara
  • DOWNLOADS Glaciers Edge A Novel by R. A. Salvatore
  • PDF DOWNLOAD Hearing The Call by Nekesa Sepiwe on Iphone
  • 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