My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Download The Financial Coaching Playbook by Kelsa Dickey
  • The Career Workbook Fulfilment at work by The School of Life on Audiobook New
  • Download PDF Wars of Suns and Shadows by Scarlett Larsson
  • PDF Download The Elven Cookbook Recipes Inspired by the Elves of Tolkien by Robert Tuesley Anderso
  • DOWNLOADS More Tales from Fur After Dark by Eric W Schwartz
  • PDF DOWNLOAD Eve Adapted for Young Adults How the Female Body Shaped Human Evolution by Cat Bohann
  • DOWNLOAD PDF EPUB Ruthless Vows by Rebecca Ross
  • PDF Famous Last Words A Novel by Gillian McAllister
  • DOWNLOAD PDF EPUB 50 Projects for Building Your Backyard Homestead Updated Edition A Hands-On St
  • PDF Light Bringer A Red Rising Novel by Pierce Brown
  • Mistletoe Redemption by Janet Tronstad Allie Pleiter on Ipad
  • Read Pdf The Wars of the Roses The Medieval Art of Graham Turner by Graham Turner
  • pdf download Kakegurui Twin Vol. 14 by Homura Kawamoto Kei Saiki Kevin Gifford
  • download pdf Thucydides A Very Short Introduction by Jennifer T. Roberts
  • epub download I Think Our Son Is Gay 05 by Okura
  • PDF EPUB Download The Talent A Novel by Daniel DAddario Full Book
  • PDF EPUB Download DBT Skills for Highly Sensitive People Make Emotional Sensitivity Your Superpower
  • DOWNLOAD PDF EPUB Upgrade A Novel by Blake Crouch
  • Grind Like a Grandmaster How to Keep Pressing until Your Opponent Cracks by Magnus Carlsen David Ho
  • Download Pdf Wild Roses and Pretenders Vol. 2 by Kamoburger
  • epub download Swanna in Love A Novel by Jennifer Belle
  • PDF DOWNLOAD White Hot by Ilona Andrews on Iphone
  • Crush A Novel by Ada Calhoun on Iphone New Format
  • Online Read Ebook The Piece That Breaks Special Edition by N. J. Gray
  • DOWNLOADS Daddy Wanted by Renee Andrews
  • PDF EPUB Download Winnie-the-Pooh The Complete Collection of Stories and Poems Winnie-the-Pooh - C
  • PDF Download Let My People Laugh Greatest Jewish Jokes of All Time by Salvador Litvak
  • Online Read Ebook Getting to Know ArcGIS Pro 3.2 by Michael Law Amy Collins
  • Download PDF The Last American Heiresses by Stephen Greco
  • PDF The Three-Body Problem Vol. 1 comic The Comic Edition by XuDong Cai Jin Cai Twilight Lu Sil
  • pdf download Pride and Prejudice by Jane Austen
  • Download PDF The Katharina Code by Jïrn Lier Horst
  • PDF EPUB Download Thunder Warriors A Starless Clan 4 by Erin Hunter Full Book
  • PDF EPUB Download The Violent Take It by Force by Matthew D. Taylor Full Book
  • PDF DOWNLOAD Bad Influence A Psychological Thriller by Brandon Massey on Iphone
  • DOWNLOAD PDF EPUB Until the Stars Fall BN Exclusive Edition by Vanessa Rasanen
  • Read pdf Into the Uncut Grass by Trevor Noah Sabina Hahn
  • Download Pdf Different Gender Through the Eyes of a Primatologist by Frans de Waal
  • PDF EPUB Download Forgotten Civilization New Discoveries on the Solar-Induced Dark Age by Robert M
  • Read pdf Out On a Limb by Karen M Henderson
  • download pdf Love Inspired March 2025 Box Set - 2 of 2 by Marta Perry Jill Kemerer Julie Brookman
  • PDF The Other Side A Story of Women in Art and the Spirit World by Jennifer Higgie
  • The Art of DreamWorks Dog Man by Ramin Zahed Dav Pilkey Peter Hastings on Iphone New Format
  • DOWNLOAD PDF EPUB The Blue Wolves of Mibu 4 Blue Miburo by Tsuyoshi Yasuda
  • PDF DOWNLOAD Miriams Sisters Deborahs Daughters When women lead the way by Liz Crumlish on Iphone
  • epub download Zero Gravity by Woody Allen Daphne Merkin
  • download pdf Alejandra Pizarnik Prosa completa Alejandra Pizarnik Complete Prose by Alejandra Piz
  • Read Pdf Antimatter Blues A Mickey7 Novel by Edward Ashton
  • PDF EPUB Download American Populist Huey Long of Louisiana by Thomas E. Patterson Full Book
  • A Circle of Uncommon Witches A Novel by Paige Crutcher on Audiobook New
  • 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