My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download PDF The Black Fantastic 20 Afrofuturist Stories by andré m. carrington
  • PDF Ruined Sinners to Reclaim Sin and Depravity in Historical Biblical Theological and Pastoral
  • DOWNLOAD PDF EPUB Why We Remember Unlocking Memorys Power to Hold on to What Matters by Charan Ran
  • DOWNLOAD PDF EPUB 2025 Scott Stamp Postage Catalogue Volume 4 Cover Countries J-M 2 Copy Set Scott
  • Read pdf The Royal House of Karedes Books 1-4 Billionaire Prince Pregnant Mistress The Playboy Sh
  • Download PDF Lady Bumpkin and Her Lord Villain Volume 2 by Ageha Sakura Kurodeko Vasileios Mousiki
  • PDF EPUB Download The Eminence in Shadow Vol. 7 manga by Daisuke Aizawa Anri Sakano Touzai Nat
  • PDF Download A Trap for Cinderella by Sébastien Japrisot Helen Weaver
  • Relentless Pursuit Our Battle with Jeffrey Epstein by Bradley J. Edwards Brittany Henderson on Ipho
  • PDF DOWNLOAD Spirits Adopted A Daisy Gumm Majesty Mystery Book 20 Historical Cozy Mystery by Alic
  • Magnolia Parks Into the Dark by Jessa Hastings on Ipad
  • PDF EPUB Download Ballparks and Baseball Sticker Logbook Track Your Trips to Every Major Baseball B
  • DOWNLOADS The Antique Hunters Death on the Red Sea A Novel by C.L. Miller
  • Read online Nintendo and Illumination present The Super Mario Bros. Movie Official Storybook by Mich
  • Online Read Ebook And the Chicken Bawkd A story about finding your unique by Randy Mott Lynde Mott
  • DOWNLOAD PDF EPUB Rocky Mountain Dreams and Family on the Range by Danica Favorite Jessica Nelson
  • Why We Die The New Science of Aging and the Quest for Immortality by Venki Ramakrishnan on Audiobook
  • pdf download The Tanaka Family Reincarnates Volume 2 by Choco kaworu Sasha Schiller
  • epub download 2020 Standard Catalog of World Coins 1901-2000 by Tracy L Schmidt
  • pdf download Powerless Special Edition by Elsie Silver
  • download pdf Bad Dreams in the Night by Adam Ellis
  • Read Pdf Escape from the Isle of the Lost by Melissa de la Cruz
  • Download PDF The Düngeonmeister RPG Sticker Book 500 Stickers to Level Up Your Campaign by Jef Aldri
  • Download Pdf GMAT Official Guide 2024-2025 Book Online Question Bank by GMAC Graduate Management Ad
  • download pdf A Day at the Post Office by Theonesse Cheon
  • Read pdf Butterfly Swords by Jeannie Lin
  • Baseball Card Price Guide 47 by Beckett Media on Ipad
  • pdf download Data Engineering with AWS Learn how to design and build cloud-based data transformation
  • Download Pdf Counterfeit Courtship by Christina Miller
  • PDF EPUB Download Love Heals A Biblical Plan to Restore Our Emotions Memories Souls and Bodies by
  • download pdf The Electric State by Simon Stalenhag
  • Download Pdf The World Almanac 2025 Word Search 175 Large-Print Puzzles by World Almanac Diego Jour
  • download pdf Whats Your Favorite Animal by Eric Carle
  • epub download The Shiunji Family Children Vol. 3 by Reiji Miyajima Reiji Yukino Kevin Gifford
  • epub download Introduction to Quantum Computing From a Layperson to a Programmer in 30 Steps by Hiu
  • PDF EPUB Download Final Fantasy VII Remake Traces of Two Pasts Novel by Kazushige Nojima Full Book
  • epub download Derived Category Methods in Commutative Algebra by Lars Winther Christensen Hans-Bjør
  • DOWNLOAD PDF EPUB The Wildest Things A Novel by Andrea Hannah
  • PDF DOWNLOAD The History of Everything by Victoria Evans on Iphone
  • PDF EPUB Download Handbook of Children and Screens Digital Media Development and Well-Being from B
  • Afterlove by Tanya Byrne on Iphone New Format
  • Read pdf Pathfinder Kingmaker Bestiary Fifth Edition 5E by Jeremy Corff Tim Hitchcock Robert J.
  • Read Pdf World of Warcraft Exploring Azeroth The Eastern Kingdoms by Christie Golden
  • PDF Winnie-the-Pooh The Complete Collection of Stories and Poems Winnie-the-Pooh - Classic Editions
  • download pdf Booster Shots The Urgent Lessons of Measles and the Uncertain Future of Childrens Heal
  • DOWNLOADS The Winter Soldier by Diana Palmer Delores Fossen
  • Read pdf Un animal salvaje by Joël Dicker
  • epub download A Concise Introduction to Robot Programming with ROS2 by Francisco Martín Rico
  • Download PDF Yarichin Bitch Club Vol. 4 by
  • Bride of the Barrier Master Vol. 3 manga by Kureha Odayaka airco airco Bodax on Audiobook New
  • 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-11 02:17:35
Previous
Find pet by ID
Next
Update an existing pet
Built with