My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOAD PDF EPUB Alien Covenant Davids Drawings by Dane Hallett Matt Hatton
  • An Economist Goes to the Game How to Throw Away 580 Million and Other Surprising Insights from the E
  • Pdf ePub Looking for You A Novel by Alexander McCall Smith download ebook
  • DOWNLOADS Theres Treasure Inside by Jon Collins-Black
  • Pdf ePub Close to Death Hawthorne and Horowitz Mystery 5 by Anthony Horowitz download ebook
  • Pdf ePub Power and Terror Conflict Hegemony and the Rule of Force by Noam Chomsky John Junkerman
  • PDF Kindle Anatomy of a Train Wreck The Rise and Fall of Priming Research by Ruth Leys
  • DOWNLOAD PDF EPUB The Dating Coach Dilemma by Cristina Ryan
  • It Ends with Us It Starts with Us Ebook Collection It Ends with Us It Starts with Us by Colleen Ho
  • Download Pdf The Revolutionary Self Social Change and the Emergence of the Modern Individual 1770-1
  • When God Speaks by Hunter Leonard William Meany on Audiobook New
  • C20 for Programmers An Objects-Natural Approach by Paul Deitel Harvey Deitel on Audiobook New
  • Online Read Ebook Stacked The Art of the Perfect Sandwich by Owen Han
  • PDF Download Embracing Beauty Serene Spaces for Living by Beth Webb
  • download pdf How to Love A Guide to Feelings Relationships for Everyone by Alex Norris
  • download pdf Saving 80 000 Gold in Another World for My Retirement 7 light novel by Funa
  • Bride in Training by Gail Gaymer Martin on Ipad
  • DOWNLOAD PDF EPUB The Art of Octopath Traveler 2016-2020 by Square Enix NAOKI NAOKI
  • DOWNLOAD PDF EPUB The Vikings Bride by Darlene Mindrup
  • Read online The Apothecary Diaries Volume 12 Light Novel by Natsu Hyuuga Touko Shino Kevin Steinba
  • PDF Kindle Celestial Elysium Girls by Stefan Soell
  • Double Lives by Mary Monroe on Ipad
  • PDF Kindle Meant for Each Other by Ginna Gray
  • DOWNLOAD PDF EPUB The Cowboys Surprise Bride The Cowboys Unexpected Family by Linda Ford
  • download pdf All That We Are Together by Alice Kellen
  • Download PDF Alexandras Garden Vegetables 30 Crochet Vegetable Patterns by Kerry Lord
  • Lies My Teacher Told Me A Graphic Adaptation by James W. Loewen Nate Powell on Iphone New Format
  • What Happens at the Beach. by Rachael Stewart on Iphone New Format
  • PDF Strategic Management in the Media Theory to Practice by Lucy Küng
  • Modern Poetry Poems by Diane Seuss on Iphone New Format
  • DOWNLOADS Rebel Witch The Crimson Moth Book 2 by Kristen Ciccarelli
  • Oaths and Shadows by K. M. Blackburn on Iphone New Format
  • PDF DOWNLOAD The Mosaic Effect How the Chinese Communist Party Started a Hybrid WAR in Americas Ba
  • Pdf ePub Baumanns Cosmetic Dermatology Third Edition by Leslie Baumann Evan A. Rieder Mary D. Su
  • Read online Oath of Fire by K Arsenault Rivera
  • DOWNLOAD PDF EPUB Royal Rescue by Tammy Johnson
  • Harlequin Presents March 2025 - Box Set 1 of 2 by Caitlin Crews Abby Green Sharon Kendrick Kim La
  • Read pdf Useless Magic Lyrics and Poetry by Florence Welch
  • download pdf Sakamoto Days Vol. 14 by Yuto Suzuki
  • PDF EPUB Download The Winner Effect The Neuroscience of Success and Failure by Ian H. Robertson Full
  • PDF Kindle Next of Kin A Novel by Hannah Bonam-Young
  • DOWNLOAD PDF EPUB The Magpie at Night The Complete Poems of Li Qingzhao 1084-1151 by Li Qingzhao
  • Read Pdf The 5 Principles of Parenting Your Essential Guide to Raising Good Humans by Aliza Pressm
  • Pdf ePub All You Need Is Love The Beatles in Their Own Words Unpublished Unvarnished and Told by
  • Five Ways to Forgiveness by Ursula K. Le Guin Nnedi Okorafor on Ipad
  • Download Pdf Street Fighter Swimsuit Special Collection by UDON Various
  • Online Read Ebook Skandar and the Skeleton Curse by A.F. Steadman
  • PDF Katie the Catsitter 4 The Purrfect Plan A Graphic Novel by Colleen AF Venable Stephanie Yue
  • On Being a Christian by Hans Kung on Iphone New Format
  • pdf download Redeeming 6 Spanish Edition by Chloe Walsh
  • 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 21:43:35
Previous
Find pet by ID
Next
Update an existing pet
Built with