My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF DOWNLOAD Babs the Butterfly A Tale of Kindness and Courage- Transforming from Bystander to Ups
  • PDF The Spoils by Colin Thompson
  • Read online Liar Liar Vol. 1 manga by Funa Yukina Haruki Kuou konomi Kevin Gifford
  • SPIDER-MAN REIGN 2 by Kaare Andrews on Iphone New Format
  • PDF Kindle Hollywood Hearts by Toni Logan
  • PDF Download La casa Neville. La formidable señorita Manon by Florencia Bonelli
  • pdf download The Art of Architectural Grafting by Jeanne Gang
  • PDF Of the Ashes by Tracy MacNish
  • Read Pdf Meditations 68.02 by Northwestern Publishing House NPH
  • DOWNLOADS When the Moon Hatched A Novel by Sarah A. Parker
  • Not About a Boy by Myah Hollis on Ipad
  • Download PDF The Joy of Costco A Treasure Hunt from A to Z by David Schwartz Susan Schwartz
  • John Lewis A Life by David Greenberg on Iphone New Format
  • PDF EPUB Download The Great Architects of Mars Evidence for the Lost Civilizations on the Red Plan
  • Online Read Ebook Acts of Forgiveness A Novel by Maura Cheeks
  • Read pdf The Cowboys Easter Surprise An Uplifting Inspirational Romance by Jill Kemerer
  • Black Woman Grief A Guide to Hope and Wholeness by Natasha Smith Quantrilla Ard on Audiobook New
  • No Apologies by Sybil Bartel on Audiobook New
  • PDF Kindle The Last Guy on Earth Special Edition by Sarina Bowen
  • Read pdf Teenage Mutant Ninja Turtles The Mirage Years 1993-1995 by Jim Lawson
  • pdf download Butts A Backstory by Heather Radke
  • You Dont Need to Forgive Trauma Recovery on Your Own Terms by Amanda Ann Gregory LCPC on Audiobook N
  • DOWNLOAD PDF EPUB Windows Internals Part 2 Edition 7 by Mark Russinovich Andrea Allievi Alex
  • DOWNLOADS Literary Cats Coloring Book by Andrew Shaffer
  • Download Pdf Terraria Volume 1 The Journey Begins by Brendan J. Vogel Matt Clingempeel Grant Alter
  • Wooing the Witch Queen by Stephanie Burgis on Audiobook New
  • Read pdf A Thanksgiving to Remember by Margaret Watson
  • Read pdf Faker by Gordon Korman
  • PDF Capitana by Cassandra James
  • Online Read Ebook Stranded for the Holidays by Lisa Carter
  • Read Pdf My Happy Marriage Vol. 8 light novel by Akumi Agitogi Tsukiho Tsukioka David Musto
  • PDF DOWNLOAD Just Dont Mention It by Estelle Maskame on Iphone
  • epub download Main Street Millionaire How to Make Extraordinary Wealth Buying Ordinary Businesses by
  • PDF DOWNLOAD We Who Wrestle with God Perceptions of the Divine by Jordan B. Peterson on Iphone
  • PDF EPUB Download The Comet by Joe Todd-Stanton Full Book
  • PDF DOWNLOAD The Restless Wave A Novel of the United States Navy by James Stavridis USN on Iphone
  • PDF The Final Wish of Mr. Murray McBride A Novel by Joe Siple
  • The Lady in Glass and Other Stories by Anne Bishop on Audiobook New
  • Read online On the Art and Craft of Doing Science by Kenneth Catania
  • Justice League International Book One Born Again 2025 Edition by J.M. DeMatteis Keith Giffen Kevin
  • Read Pdf In Too Deep A Reacher Novel by Lee Child Andrew Child
  • Her Amish Chaperone and The Amish Bakers Rival by Leigh Bale Marie E. Bast on Ipad
  • Download Pdf Protecting Her Daughter by Lynette Eason
  • Pdf ePub The Secret Apparatus The Muslim Brotherhoods Industry of Death by Cynthia Farahat Daniel
  • DOWNLOADS Three Bags Full by Leonie Swann Anthea Bell A. J. Finn
  • Download Pdf Cole and Sav Our Surprising Love Story by Cole and Savannah LaBrant
  • pdf download Looking for You A Novel by Alexander McCall Smith
  • Read online A Family With the Cowboy by Elsa Winckler
  • Download PDF The Brilliant Healers New Life in the Shadows Volume 3 by Sakaku Hishikawa Daburyu Ca
  • Everything You Need to Ace Science in One Big Fat Notebook The Complete Middle School Study Guide by
  • 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