My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF DOWNLOAD Every Last Breath by Jennifer L. Armentrout on Iphone
  • DOWNLOAD PDF EPUB The Guy She Was Interested In Wasnt a Guy at All Vol. 1 by Sumiko Arai Ajani O
  • epub download Gittersee Roman Nominiert für den Deutschen Buchpreis 2023 by Charlotte Gneuß
  • Online Read Ebook Aerin Lauder Living with Flowers by Aerin Lauder
  • PDF 7FATES CHAKHO Vol. 5 comic by HYBE BTS
  • PDF Bye Forever I Guess by Jodi Meadows
  • Good Dirt A Novel by Charmaine Wilkerson on Ipad
  • PDF The Bloodied Nightgown and Other Essays by Joan Acocella
  • DOWNLOADS Lucia and the Loom Weaving Her Way to Happiness Volume 3 by Hisaya Amagishi Esora Amaichi
  • PDF EPUB Download Milk and Honey 10th Anniversary Collectors Edition by Rupi Kaur Full Book
  • Read online The Palm Springs School Desert Modernism 1934-1975 by Alan Hess Christine Madrid French
  • download pdf When the Earth Was Green Plants Animals and Evolutions Greatest Romance by Riley Bla
  • download pdf Clytemnestra A Novel by Costanza Casati
  • PDF Kindle Abigail Gets Left Out Cant sing. Cant dance. Can count on Jesus by Bethany McIlrath Kat
  • download pdf Siege of Vraks by Steve Lyons
  • download pdf The Cul-de-sac by Christopher Null
  • DOWNLOADS The Art and Making of Hogwarts Legacy Exploring the Unwritten Wizarding World by Insight E
  • Download Pdf Slewfoot A Tale of Bewitchery by Brom
  • DOWNLOADS Rest Stop by Nat Cassidy
  • Read Pdf Meaning A Very Short Introduction by Emma Borg Sarah A. Fisher
  • Download Pdf Something Good by Kenneth Kraegel
  • Read online Off-White The Truth About Antisemitism by Rachel Shabi
  • Linux Kernel Programming - Second Edition A practical guide to kernel internals writing kernel modu
  • PDF EPUB Download Lorne The Man Who Invented Saturday Night Live by Susan Morrison Full Book
  • DOWNLOAD PDF EPUB A Little Life by Hanya Yanagihara
  • Read online The Prince and the Scribe by Logan Kelly
  • Pdf ePub Toxic Prey by John Sandford download ebook
  • PDF EPUB Download Hes Not My Type by Meghan Quinn Full Book
  • DOWNLOADS Writing Jazz Conversations with Critics and Biographers by Sascha Feinstein
  • Online Read Ebook Animal by Lisa Taddeo
  • Read online Smart Not Loud How to Get Noticed at Work for All the Right Reasons by Jessica Chen
  • Read pdf The Gentlemans Guide to Getting Lucky by Mackenzi Lee
  • Read Pdf The War of the Worlds by H. G. Wells
  • Lily and Hedwig - No Regrets The Memoir of Two Fearless Women by Hedwig Vicki Burkhard Lily Kraft o
  • pdf download Pedal Pusher How One Womans Bicycle Adventure Helped Change the World by Mary Boone Li
  • Read pdf La desaparicion de Stephanie Mailer The Disappearance of Stephanie Mailer by Joel Dicke
  • Pdf ePub Loved to Life A 40-Day Pilgrimage with Love Himself That Will Change Your Life by Ann Vosk
  • download pdf Might as Well Cheat I Got Transported to Another World Where I Can Live My Wildest Dre
  • PDF Kindle Last Night at the Telegraph Club National Book Award Winner by
  • DOWNLOAD PDF EPUB My BIG Playbook Farm by Ingela P. Arrhenius
  • PDF All Fours by Miranda July
  • Too Many Losing Heroines Light Novel Vol. 3 by Takibi Amamori Imigimuru on Ipad
  • pdf download The Princess and the Grilled Cheese Sandwich A Graphic Novel by Deya Muniz
  • Wednesdays Child Stories by Yiyun Li on Ipad
  • A Circle of Uncommon Witches A Novel by Paige Crutcher on Ipad
  • DOWNLOADS Wilderness Hostage by Janice Kay Johnson
  • Read Pdf Two Weddings and a Murder by Alyssa Maxwell
  • pdf download Jim Murrays Whiskey Bible 2024 by Jim Murray
  • Read Pdf Goldman-Cecil Medicine 2-Volume Set by Lee Goldman MD Kathleen A. Cooney
  • PDF EPUB Download The Housemate by Sarah Bailey Full Book
  • 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-09 01:23:30
Previous
Find pet by ID
Next
Update an existing pet
Built with