My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read Pdf Everything You Need to Ace Science in One Big Fat Notebook The Complete Middle School Stu
  • DOWNLOAD PDF EPUB How Life Works A Users Guide to the New Biology by Philip Ball
  • PDF EPUB Download Smart Not Loud How to Get Noticed at Work for All the Right Reasons by Jessica
  • PDF Download Star Wars Bestiary Vol. 1 Creatures of the Galaxy by S.T. Bende Iris Compiet
  • Download PDF Mega Man X Maverick Hunters Field Guide by David Oxford Nadia Oxford Capcom Jeffrey
  • Download Pdf Ours for Halloween A Dark Monster Romance Novella by Violet Taylor
  • Read pdf Theres Always Divorce by N.E.L
  • Read pdf The Person I Loved Asked Me to Die in My Sisters Stead Volume 2 by Mizuki Nagano Maki Y
  • Read Pdf STILL The Art of Noticing by Mary Jo Hoffman
  • Read Pdf Rick Kotanis 400 Million Dollar Summer by Waka T. Brown
  • PDF EPUB Download Pony Express Courtship and The Express Riders Lady by Rhonda Gibson Stacy Henri
  • PDF Kindle Christmas Cowboy Kisses A Family for Christmas A Christmas Miracle Christmas with He
  • Read online Wings of Starlight by Allison Saft
  • DOWNLOAD PDF EPUB The Kabbalistic Tree by J. H. Chajes
  • PDF Kindle Flock by Kate Stewart
  • Sword Art Online Ordinal Scale Vol. 1 manga by IsII Stephen Paul abec on Ipad
  • DOWNLOADS I Cross-Dressed for the IRL Meetup 3 by Kurano
  • download pdf Honey Lemon Soda Vol. 8 by Mayu Murata Amanda Haley
  • PDF Download Dragon and Chameleon 02 by RYO ISHIYAMA
  • PDF Download The Champ is Here by Nathan Dragon
  • PDF The Mimosa Confessions Light Novel Vol. 2 by Mei Hachimoku KUKKA
  • DOWNLOAD PDF EPUB Wisconsin Wedding by Carla Neggers
  • Read pdf Learning Kali Linux Security Testing Penetration Testing Ethical Hacking by Ric Messier
  • PDF EPUB Download Digital SAT Prep Plus 2024 Includes 1 Full Length Practice Test 700 Practice Qu
  • Bacteria to AI Human Futures with our Nonhuman Symbionts by N. Katherine Hayles on Ipad
  • Read online The Pedestrian Volume 1 by Joey Esposito Sean Von Gorman
  • DOWNLOAD PDF EPUB The Book of Purrs Everyday Thoughts from Your Feline Friends by Luis Coelho
  • DOWNLOADS Nesting A Novel by Roisín ODonnell
  • Stream Big The Triumphs and Turmoils of Twitch and the Stars Behind the Screen by Nathan Grayson on
  • PDF Download The Adventures of Sherlock Holmes by Arthur Conan Doyle
  • download pdf The Worldbuilders Journal of Legendary Adventures Dungeons Dragons Create Mythical Ch
  • PDF EPUB Download From Boss to Bridegroom and Family of Her Dreams by Karen Kirst Keli Gwyn Full
  • PDF Kindle The Dreams We Knew A Novel of the Roaring Twenties by Rachel Scott McDaniel
  • PDF DOWNLOAD We Who Wrestle with God Perceptions of the Divine by Jordan B. Peterson on Iphone
  • Read Pdf The Lotus Empire by Tasha Suri
  • DOWNLOAD PDF EPUB VENOM BY AL EWING VOL. 8 VENOM WAR by Al Ewing Torunn Gronbekk Cafu
  • Tanks on Iwo Jima 1945 by Romain Cansière Felipe Rodríguez on Ipad
  • Download PDF The Black Fantastic 20 Afrofuturist Stories by andré m. carrington
  • PDF EPUB Download The Little Book of Chanel by Lagerfeld The Story of the Iconic Fashion Designer
  • epub download African Stories by Ben Okri
  • PDF Kindle Crocheted Bees Bugs Butterflies by Vanessa Mooncie
  • epub download Oceans of Fate Peace and Peril Aboard the Steamship Empress of Asia by Dan Black Jame
  • pdf download The Five Phases of Mixing by Jermaine sound. Wav Evans
  • pdf download Symbols of the Occult by Eric Chaline
  • DOWNLOADS Taylor Swift Superstar by Shana Corey
  • download pdf Septology by Jon Fosse Damion Searls
  • PDF EPUB Download Chronicles of an Aristocrat Reborn in Another World Manga Vol. 8 by Yashu Nini M
  • pdf download Someone from the Past A London Mystery by Margot Bennett
  • Read Pdf Im a Behemoth an S-Ranked Monster but Mistaken for a Cat I Live as an Elf Girls Pet V
  • PDF No te creas todo lo que piensas El sufrimiento empieza y termina en tu cabeza Dont Believe Ev
  • 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-08 00:27:05
Previous
Find pet by ID
Next
Update an existing pet
Built with