My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download Pdf Moon Girl and Devil Dinosaur Wreck and Roll A Marvel Original Graphic Novel by Stephani
  • Pdf ePub Infinity Alchemist by Kacen Callender download ebook
  • download pdf Climatic Architecture Philippe Rahm architectes by Philippe Rahm
  • pdf download Matzah Day by Charlotte Offsay Jason Kirschner
  • Read pdf Monsieur Pain by Roberto Bolaño Chris Andrews
  • pdf download The Conspiracy Tourist by Dom Joly
  • Meditations 68.02 by Northwestern Publishing House NPH on Iphone New Format
  • DOWNLOADS The Desert Talon by Karin Lowachee
  • The Official Wordscapes Puzzle Book Volume 1 by PeopleFun on Audiobook New
  • Online Read Ebook Futures Edge by Gareth L. Powell
  • Read pdf All-American Ads of the 60s by Steven Heller Jim Heimann
  • Lightlark Book 1 by Alex Aster on Iphone New Format
  • PDF Kindle Everything Keeps Dissolving Conversations with Coil by Nick Soulsby
  • Read Pdf Holmes Is Missing Pattersons Most-Requested Sequel Ever by James Patterson Brian Sitts
  • PDF EPUB Download Brother Brontë A Novel by Fernando A. Flores Full Book
  • The Dating Coach Dilemma by Cristina Ryan on Audiobook New
  • PDF DOWNLOAD The Dangers in My Heart Vol. 10 by Norio Sakurai on Iphone
  • PDF DOWNLOAD Thats not my... Farm by Fiona Watt Rachel Wells on Iphone
  • download pdf Question Authority A Polemic About Trust in Five Meditations by Mark Kingwell
  • Read online Anything That Moves by Jamie Stewart
  • PDF Kindle A Cat from Our World and the Forgotten Witch Vol. 4 by Hiro Kashiwaba
  • Online Read Ebook Blossom Origami by Clover Robin
  • pdf download Find My Daughter A totally addictive and gripping serial killer thriller by Jennifer Ch
  • My Husband A Novel by Maud Ventura Emma Ramadan on Iphone New Format
  • Download Pdf The Strategy of Denial American Defense in an Age of Great Power Conflict by Elbridge A
  • download pdf The Cleaner by Samantha Beal
  • Online Read Ebook Noah Frye Gets Crushed by Maggie Horne
  • PDF EPUB Download Pizza Dreams Do Come True by Cam Higgins Allison Steinfeld Full Book
  • Shallow River by H. D. Carlton on Iphone New Format
  • PDF EPUB Download Retreat A Novel by Krysten Ritter Full Book
  • Always by Helen Hardt on Ipad
  • Read pdf Chokepoints American Power in the Age of Economic Warfare by Edward Fishman
  • Read pdf Puerto Rico A National History by Jorell Meléndez-Badillo
  • pdf download Take My Hand by Ruth Scofield
  • Mass Effect The Official Cocktail Book by Cassandra Reeder Jim Festante on Ipad
  • Bunt Striking Out on Financial Aid by Ngozi Ukazu Mad Rupert on Ipad
  • CPT Professional 2024 by American Medical Association on Audiobook New
  • pdf download C20 for Programmers An Objects-Natural Approach by Paul Deitel Harvey Deitel
  • DOWNLOAD PDF EPUB Yuletide Hearts and Reunited at Christmas by Ruth Logan Herne Belle Calhoune
  • DOWNLOADS The Summer I Turned Pretty by Jenny Han
  • Pdf ePub A Little Life by Hanya Yanagihara download ebook
  • PDF EPUB Download Marvel Comics Library. Avengers. 1963-1965 by Kurt Busiek Jack Kirby Stan Lee Fu
  • PDF Download Big Name Fan by Ruthie Knox Annie Mare
  • Read Pdf London Rules by Mick Herron
  • PDF Mothers Day MiracleBlessed Baby by Lois Richer
  • Read online Tuft the World An Illustrated Manual to Tufting Gorgeous Rugs Decor and More by Tierna
  • The Amish Christmas Secret and The Amish Widows Christmas Hope by Vannetta Chapman Carrie Lighte on
  • DOWNLOAD PDF EPUB A Dangerous Past by Susan Gee Heino
  • Read online Street Smart Chess by Axel Smith
  • PDF EPUB Download The Art of Horizon Forbidden West by Guerrilla Games Full Book
  • 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 23:02:55
Previous
Find pet by ID
Next
Update an existing pet
Built with