My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download PDF House of Crimson Hearts A Steamy Vampire Fantasy Romance by Ruby Roe
  • PDF EPUB Download Nesting A Novel by Roisín ODonnell Full Book
  • Royal Rescue by Tammy Johnson on Ipad
  • download pdf The Poisoner by I V Ophelia
  • DOWNLOAD PDF EPUB Batman Superman Worlds Finest Vol. 5 Secret Origins by Mark Waid Travis Moore
  • Online Read Ebook My Name Was Eden A Novel by Eleanor Barker-White
  • epub download The Wings Upon Her Back by Samantha Mills
  • DOWNLOADS The Pirate King The Strange Adventures of Henry Avery and the Birth of the Golden Age of P
  • PDF Kindle Today Tonight Tomorrow by Rachel Lynn Solomon
  • Download PDF Tamamoris Fantasies Never Stop Vol. 1 by TATSUWAIPU
  • The National Telepathy by Roque Larraquy Frank Wynne on Ipad
  • The Trading Game A Confession by Gary Stevenson on Audiobook New
  • PDF Three Eight One by Aliya Whiteley
  • PDF Kindle Now Youre Mine A Dark Stalker Romance by Morgan Bridges
  • DOWNLOADS How We Live Is How We Die by Pema Chodron
  • Download Pdf Learn AI-assisted Python Programming With GitHub Copilot and ChatGPT by Leo Porter Dan
  • PDF Download No Apologies by Sybil Bartel
  • DOWNLOADS The Years Best Sports Writing 2024 by Jane McManus Glenn Stout
  • Read online Wars of Suns and Shadows by Scarlett Larsson
  • The Valiant Must Fall Vol. 4 by Yu Aida on Iphone New Format
  • PDF Download Knitting Stylish Stuff from Your Stash 20 Scrappy Desgins by Erica Berntsen
  • The Secret History of Audrey James A Novel by Heather Marshall on Audiobook New
  • DOWNLOADS An Endless Love A Novel of Forever by Emily Sue Harvey
  • PDF Download Just the Good Stuff No-BS Secrets to Success No Matter What Life Throws at You by Jim
  • Download Pdf Exceptional Watches From the Rolex Daytona to the Casio G-Shock 90 rare and collectabl
  • DOWNLOADS A Curse Carved in Bone Book Two of the Saga of the Unfated by Danielle L. Jensen
  • DOWNLOAD PDF EPUB SANCTIFY Volume 3 by GODSSTATION
  • Get Better at Anything 12 Maxims for Mastery by Scott H. Young on Ipad
  • PDF EPUB Download Talking Cure An Essay on the Civilizing Power of Conversation by Paula Marantz C
  • Read online The Happy Pear 20 Recipes and Learnings From the First 20 Years by David Flynn Stephen
  • PDF Orris and Timble The Beginning by Kate DiCamillo Carmen Mok
  • Read Pdf The Next Deadly Chapter by V. M. Burns
  • Download PDF Emma by Jane Austen
  • Read online Fledge Witch The Magical Apprentices of Elemeria by Haifun Jamie Aczel Bradly Halestor
  • Read Pdf Help Wanted A Novel by Adelle Waldman
  • A Queen this Fierce and Deadly by Stacia Stark on Iphone New Format
  • Read online The Ojanox I Scream in the Dark by Daemon Manx
  • PDF Hidden Enemies by Lenora Worth Terri Reed
  • PDF DOWNLOAD Dork Diaries 16 Tales from a Not-So-Bratty Little Sister by Rachel Renée Russell on I
  • download pdf Clown in a Cornfield by Adam Cesare
  • download pdf The Bride Bet Girl Meets Duke by Tessa Dare
  • PDF EPUB Download Structure and Synthesis The Anatomy of Practice by Full Book
  • Download PDF 365 Connecting Questions for Couples Revised and Updated With 200 new questions by Case
  • download pdf Believe Me by Tahereh Mafi
  • Read pdf Kapusta Vegetable-Forward Recipes from Eastern Europe by Alissa Timoshkina
  • PDF Kindle The Psychology of Fashion by Carolyn Mair
  • Cómo operar en los Tribunales del Cielo revisado y ampliado Spanish Edition Conceder a Dios el derec
  • Read online Light Warriors A Heavenly Strategy for Spiritual Warfare by Joshua Mills Katie Souza
  • Limitless Poetry of an Aromantic Asexual Journey by Patrick Bex on Iphone New Format
  • Read online Wrath of the Triple Goddess Percy Jackson and the Olympians by Rick Riordan
  • 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-07 10:37:45
Previous
Find pet by ID
Next
Update an existing pet
Built with