My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF DOWNLOAD Karl Lagerfeld A Fashion History by MARIE OTTAVI on Iphone
  • PDF Download Yuletide Secrets by Hope White Maggie K. Black
  • Borderlands Debt or Alive by Anthony Burch on Audiobook New
  • THE STAR SEEKERS Vol. 6 comic by HYBE TOMORROW X TOMORROW X TOGETHER on Iphone New Format
  • PDF EPUB Download The Little Book of Parenting How to Nurture Your Child to Their Full Potential by
  • PDF Download The SketchUp Handbook for Interior Design A step-by-step visual approach to planning
  • The Cycle Confronting the Pain of Periods and PMDD by Shalene Gupta on Ipad
  • Online Read Ebook The Artists Guide to Sketching The Classic Book about Making Art on Location by Ja
  • Read Pdf Cold Case Murder Mystery by Nicole Helm
  • Billionaires Bargain by Maureen Child on Ipad
  • DOWNLOAD PDF EPUB DD Monster Manual 2024 by Wizards of the Coast
  • Read online The Staff Engineers Path A Guide for Individual Contributors Navigating Growth and Chang
  • Read pdf Tom Lake by Ann Patchett Míriam Cano
  • Download Pdf Her Shock Pregnancy Secret by Penny Jordan
  • Read Pdf Color Theory for Artists by Ian Goldsmith
  • PixlPeople Cross-Stitch Your Favorite People by John-Michael Stoof on Audiobook New
  • DOWNLOADS Homecoming A Downeast Novel by Marie Force
  • PDF Dreams Chie Yoshii by Chie Yoshii
  • Download Pdf The The Great Devourer The Leviathan Omnibus by Nick Kyme Guy Haley Josh Reynolds Jo
  • Pdf ePub Drawing Deena by Hena Khan download ebook
  • Download Pdf Once Upon a Wishbone Finding Light Through a Story of Hope Connection and Rediscovered
  • Read Pdf Private Revolutions Four Women Face Chinas New Social Order by Yuan Yang
  • PDF EPUB Download Storm Warning by Elizabeth Goddard Full Book
  • epub download EAT by Nagabe
  • epub download An Unlikely Amish Match and An Amish Arrangement by Vannetta Chapman Jo Ann Brown
  • epub download Light Warriors A Heavenly Strategy for Spiritual Warfare by Joshua Mills Katie Souza
  • PDF DOWNLOAD The Retirement Puzzle Book Activities and Games to Keep Your Mind Active by Summersda
  • Pdf ePub Healing the Widowers Heart by Susan Anne Mason download ebook
  • Download PDF Only Rainbows by Karen C McCord
  • Read Pdf Rigor Unveiled A Video-Enhanced Flipbook to Promote Teacher Expertise in Relationship Bui
  • Online Read Ebook The Mighty Quinns Tristan by Kate Hoffmann
  • PDF DOWNLOAD Big Vegan Flavor Techniques and 150 Recipes to Master Vegan Cooking by Nisha Vora on
  • The JFK Conspiracy The Secret Plot to Kill Kennedy-and Why It Failed by Brad Meltzer Josh Mensch on
  • epub download A Home for Unusual Monsters by Shaun David Hutchinson
  • Download PDF Canción de amor de Auschwitz Love Song from Auschwitz by Mario Escobar
  • DOWNLOADS The Primal Hunter Light Novel Vol. 1 by Zogarth Senchiro Adrian F. Wassel Der-shing Hel
  • DOWNLOAD PDF EPUB Fly Me to the Moon Vol. 27 by Kenjiro Hata
  • Under the Eye of the Big Bird A Novel by Hiromi Kawakami Asa Yoneda on Audiobook New
  • Online Read Ebook Slow Easy comforting Italian meals worth waiting for by Gennaro Contaldo David L
  • PDF EPUB Download Supernatural - Children of Anubis by Tim Waggoner Full Book
  • Online Read Ebook Gleam by Raven Kennedy
  • Read pdf Meant for Each Other by Ginna Gray
  • Read Pdf Dork Diaries Books 13-15 Boxed Set Dork Diaries 13 Dork Diaries 14 Dork Diaries 15 by Rac
  • download pdf The Serviceberry Abundance and Reciprocity in the Natural World by Robin Wall Kimmerer
  • DOWNLOADS Jane Eyre Movie Tie-in Edition by Charlotte Brontë
  • How to Draw Super Cute Things with Bobbie Goods Learn to draw color absolutely adorable art by Bobb
  • Online Read Ebook Best Friends for Never by Teagan Hunter
  • DOWNLOADS Prince of Montéz Pregnant Mistress by Sabrina Philips
  • Read online The Ocean at the End of the Lane by Neil Gaiman
  • PDF Big Name Fan by Ruthie Knox Annie Mare
  • 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