My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • epub download God of Fury Deluxe Edition by Rina Kent
  • PDF Theyre Going to Love You A Novel by Meg Howrey
  • PDF EPUB Download Infantry in Battle 1733-1783 by Alexander S. Burns Full Book
  • pdf download Unkindness of Crimson Ravens A Vampire Romance by Arya Sloane
  • Online Read Ebook The Unveiled Tarot An 80-Card Deck and Guidebook by Jesse Lonergan Mike Mignola
  • epub download Riverstars Home by Erin Hunter
  • PDF Kindle A Handheld History by Lost in Cult
  • epub download Bofuri I Dont Want to Get Hurt so Ill Max Out My Defense. Vol. 15 light novel by Yuu
  • PDF Kindle The Little Mermaid Guide to Merfolk by Eric Geron
  • PDF Download Texas-Sized Secrets by Elle James
  • DOWNLOADS Wild Apothecary Reclaiming Plant Medicine for All by Amaia Dadachanji
  • The Trunk A Novel by Kim Ryeo-ryeong on Iphone New Format
  • pdf download Who Needs College Anymore Imagining a Future Where Degrees Wont Matter by Kathleen deLa
  • PDF El hombre iluminado The Sunlit Man by Brandon Sanderson
  • download pdf My Best Friend is an Eldritch Horror Light Novel Vol. 1 by ACTUS Kisaragipana Adrian
  • PDF Download The World Atlas of Wine 8th Edition by Hugh Johnson Jancis Robinson
  • PDF Kindle Pussypedia A Comprehensive Guide by Zoe Mendelson Maria Conejo Heather Corinna
  • DOWNLOAD PDF EPUB Reverend Ike An Extraordinary Life of Influence by Mark Victor Hansen Xavier Ei
  • Read Pdf Silver Throat by Siri Pettersen Tara Chace
  • Read Pdf An Introduction to Whitework Embroidery with Colour 10 stunning projects with reusable ir
  • download pdf The Science of Racism Everything You Need to Know but Probably Dont - Yet by Keon West
  • DOWNLOAD PDF EPUB Public Domain Volume 2 by Chip Zdarsky
  • DOWNLOAD PDF EPUB Abba All the Songs The Story Behind Every Track by Benoit Clerc
  • PDF EPUB Download Designing and Prototyping Interfaces with Figma Learn essential UX UI design pri
  • PDF Download Infinite Dendrogram Volume 21 Light Novel by Sakon Kaidou Taiki Andrew Hodgson
  • Read pdf The Book of Healing Selected Poetry and Prose by Najwa Zebian
  • PDF DOWNLOAD The Exvangelicals Loving Living and Leaving the White Evangelical Church by Sarah M
  • Rescue on the Farm An Uplifting Inspirational Romance by Allie Pleiter on Iphone New Format
  • Jackson Pollock The Early Years 19341947 by Joanne Snrech Orane Stalpers Cécile Debray Ruben Gall
  • DOWNLOADS Eat the World A Collection of Poems by Marina Diamandis
  • Neon Gods by Katee Robert on Ipad
  • PDF Kindle One-Dimensional Two-Phase Flow by Graham B. Wallis
  • DOWNLOAD PDF EPUB Practicing the Way Be with Jesus. Become like him. Do as he did. by John Mark Co
  • DOWNLOADS Venice and the Ottoman Empire A Tale of Art Culture and Exchange by Stefano Carboni
  • download pdf The Nanny Share An addictive twisty and gripping psychological thriller by Emily Shin
  • PDF Kindle Into Thin Air by Mary Ellen Porter
  • PDF DOWNLOAD Monstrilio by Gerardo Sámano Córdova on Iphone
  • download pdf I Heard Her Call My Name A Memoir of Transition by Lucy Sante
  • Download PDF A Fortunes Redemption by Stella Bagwell
  • Read pdf Toxicity to Triumph Navigating Work with Emotional Intelligence and a Growth Mindset by K
  • Read Pdf The Amish Widows New Love by Liz Tolsma
  • PDF EPUB Download Playboy by Constance Debre Holly James Full Book
  • Online Read Ebook Twin Threat Christmas by Rachelle McCalla
  • DOWNLOADS The Wedding Menu by Letizia Lorini
  • epub download The Silver Spoon by Phaidon Press
  • Christmas Gifts by Gail Gaymer Martin Brenda Minton on Iphone New Format
  • PDF Download The Dog Who Followed the Moon by James Norbury
  • epub download Pattern Breakers Why Some Start-Ups Change the Future by Mike Maples Jr Peter Ziebelm
  • PDF Kindle The Last Road Trip by Jennifer Klepper
  • PDF The Slain Divine by David Dalglish
  • 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