My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOAD PDF EPUB Forward As Always by Olan Rogers Jake Sidwell Jim Krueger
  • Bocchi the Rock Vol. 5 by Aki Hamazi on Ipad
  • Online Read Ebook The 100 Tactical Patterns You Must Know Workbook Practical Exercises to Spot the K
  • High Island Blues A George Molly Palmer-Jones Novel by Ann Cleeves on Ipad
  • Download Pdf 31 Days Before your CCNA Exam A Day-By-Day Review Guide for the CCNA 200-301 Certificat
  • DOWNLOADS Azula in the Spirit Temple Avatar The Last Airbender by Faith Erin Hicks Peter Wartman A
  • DOWNLOAD PDF EPUB The Bartenders Manifesto How to Think Drink and Create Cocktails Like a Pro by
  • pdf download The Lady and the Secret Lord by Kate Moore
  • download pdf As Good as Dead A Good Girls Guide to Murder 3 by Holly Jackson
  • download pdf London Rules by Mick Herron
  • download pdf The Half of It by Madison Beer
  • Pdf ePub Shes Always Hungry Stories by Eliza Clark download ebook
  • PDF EPUB Download Six White Horses Poems by Sarah Gordon Full Book
  • DOWNLOAD PDF EPUB Care Work Dreaming Disability Justice by Leah Lakshmi Piepzna-Samarasinha
  • download pdf Dismantling the Masters Clock On Race Space and Time by Rasheedah Phillips
  • Your Farm by Jon Klassen on Audiobook New
  • pdf download The Wok Recipes and Techniques by J. Kenji Lopez-Alt
  • PDF DOWNLOAD Improvise Freely Throw away the rulebook and unleash your creativity by Patti Stiles
  • PDF Sunbringer A Novel by Hannah Kaner
  • Aurora A Novel by David Koepp on Audiobook New
  • Download PDF Serotonin A Novel by Michel Houellebecq Shaun Whiteside
  • Online Read Ebook Steps A Guide to Transforming Your Life When Willpower Isnt Enough by John Ortberg
  • Download Pdf Milk Street Bakes A Baking Book with 200 Sweet and Savory Recipes by Christopher Kimbal
  • PDF Kindle Manual of Biogenic House Sections Materials and Carbon by Paul Lewis Marc Tsurumaki Da
  • Download PDF Basic and Clinical Pharmacology 15e by Bertram G. Katzung Anthony J. Trevor
  • A Criada The Housemaid by Freida McFadden on Ipad
  • Online Read Ebook His Love Has Two Sides by Frank Billingsley
  • Read online Germs Arent For Real by Benni Star
  • DOWNLOAD PDF EPUB Loving A Photographic History of Men in Love 1850s-1950s by Hugh Nini Neal Trea
  • DOWNLOADS The Poisoner by I V Ophelia
  • Read pdf Building Your Own Home A Comprehensive Guide for Owner-Builders by George Wilkie
  • PDF Kindle The Art of Electronics The x Chapters by Paul Horowitz Winfield Hill
  • download pdf What Fell from the Sky by Adrianna Cuevas
  • epub download Throw Away the Suit Together Vol. 3 by Keyyang
  • pdf download Now It All Makes Sense How An ADHD Diagnosis Brought Clarity To My Life by Alex Partrid
  • epub download Bluebird A Memoir of Trauma Heartbreak and Divine Beauty in the Struggle by Michelle
  • Download PDF If Cats Disappeared from the World A Novel by Genki Kawamura Eric Selland
  • PDF Heal Your Gut Save Your Brain The Five Pillars of Enhancing Your Gut and Optimizing Your Cogni
  • pdf download Puppy Love by Elle Sprinkle
  • download pdf Doctor Who Evil of the Daleks by Frazer Hines
  • pdf download Engineering Graphics with SOLIDWORKS 2022 A Step-by-Step Project Based Approach by Davi
  • DOWNLOADS Marvel What If...Loki Was Worthy A Loki Valkyrie Story by Madeleine Roux
  • Pdf ePub Essential Rogue Trooper The Traitor General by Gerry Finley-Day Gordon Rennie Cam Kenned
  • Happy Fathers Day from the Crayons by Drew Daywalt Oliver Jeffers on Iphone New Format
  • PDF DOWNLOAD DK Japan by DK Travel on Iphone
  • PDF EPUB Download The Imperial Uncle by Da Feng Gua Guo E. Danglars Jan Mitsuko Cash Full Book
  • DOWNLOAD PDF EPUB Serotonin A Novel by Michel Houellebecq Shaun Whiteside
  • Read Pdf That Time I Got Drunk and Yeeted a Love Potion at a Werewolf by Kimberly Lemming
  • epub download Revelations of the Aramaic Jesus The Hidden Teachings on Life and Death by Neil Dougla
  • Read Pdf The 5 Types of Wealth A Transformative Guide to Design Your Dream Life by Sahil Bloom
  • 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