My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • pdf download The New Girl A Graphic Novel The New Girl 1 by Cassandra Calin
  • epub download Tsunami Womens Voices from Mexico by Julia Sanches Diana J. Torres Sara Uribe Zapat
  • AI Engineering Building Applications with Foundation Models by Chip Huyen on Iphone New Format
  • PDF Kindle Piñata A Novel by Leopoldo Gout
  • epub download Avatar Legends The RPG Core Book by Sharang Biswas Elizabeth Chaipraditkul
  • PDF Download Star Cursed by Elizabeth Briggs
  • PDF Download Rodeo Reunion by Shannon Taylor Vannatter
  • Righting Wrongs Three Decades on the Front Lines Battling Abusive Governments by Kenneth Roth on Aud
  • Pdf ePub Cree en los sueños y ellos te crearán Believe in Dreams and They Will Create You by Alb
  • DOWNLOAD PDF EPUB A Family for the Billionaire by Dani Wade
  • pdf download The Lumberjacks Bride by Jean Kincaid
  • Illuminating the Intent An Exposition of Candrakirtis Entering the Middle Way by Je Tsongkhapa Thup
  • epub download Gantz Omnibus Volume 4 by Hiroya Oku Matthew Johnson
  • epub download The Seven Husbands of Evelyn Hugo A Novel by Taylor Jenkins Reid
  • Read Pdf Lethal Vengeance by Robert Bryndza
  • Read pdf Grimms Fairy Tales by Wilhelm Grimm
  • En el amor y en la guerra La catedral del mar 3 by Ildefonso Falcones on Audiobook New
  • DOWNLOADS Talula Had a Little Dog by Love Haze
  • DOWNLOADS Pierre Soulages From Midnight to Twilight by Pierre Soulages Annie Godfrey Larmon Alfred
  • epub download The Experience Machine How Our Minds Predict and Shape Reality by Andy Clark
  • PDF EPUB Download Irreducible Consciousness Life Computers and Human Nature by Federico Faggin Fu
  • PDF Kindle Pusheen the Cat Collection Boxed Set I Am Pusheen the Cat The Many Lives of Pusheen the
  • PDF The Message by Ta-Nehisi Coates
  • epub download Max in the Land of Lies A Tale of World War II by Adam Gidwitz
  • Online Read Ebook The MANIAC by Benjamín Labatut
  • Download Pdf Welcome to Dorley Hall by Alyson Greaves
  • Pdf ePub Say Youll Remember Me by Abby Jimenez download ebook
  • download pdf Sebze Vegetarian Recipes from My Turkish Kitchen by Ozlem Warren
  • PDF EPUB Download The Amish Widows New Love by Liz Tolsma Full Book
  • pdf download His Enemys Italian Surrender by Sharon Kendrick
  • PDF DOWNLOAD Studio Ghibli Howls Moving Castle 30 Postcards by Studio Ghibli on Iphone
  • Download PDF The Warbler A Novel by Sarah Beth Durst
  • epub download The Most Heretical Last Boss Queen From Villainess to Savior Light Novel Vol. 8 by Ten
  • PDF Download Witch Life in a Micro Room Vol. 4 by Akitaka Abby Lehrke
  • Download Pdf A Mavericks Road Home by Catherine Mann
  • Read pdf Batman The Animated Series Official Coloring Book by Insight Editions
  • The Menopause Brain New Science Empowers Women to Navigate the Pivotal Transition with Knowledge and
  • Download PDF Lovers Touch and A Deal with Demakis by Penny Jordan Tara Pammi
  • Puzzled 4 Murder by J. C. Eaton on Iphone New Format
  • Pdf ePub The Sun of Knowledge Shams al-Maarif An Arabic Grimoire in Selected Translation by downlo
  • PDF EPUB Download Worth a Shot Secrets of the Clinical Trial Participant Who Inspired a Global Movem
  • PDF Kindle Snowy Day and Other Stories by Lee Chang-dong Yoosup Chang Heinz Insu Fenkl
  • Download PDF How to Cast Out Demons Everything You Need to Know About Deliverance by Isaiah Saldivar
  • PDF Kindle Texas-Sized Secrets by Elle James
  • PDF EPUB Download Truth and Repair How Trauma Survivors Envision Justice by Judith Lewis Herman MD F
  • Download PDF His Precious Inheritance by Dorothy Clark
  • The Haunted Wood A History of Childhood Reading by Sam Leith on Iphone New Format
  • pdf download Treasury of the True Dharma Eye Dogens Shobogenzo Eight-Volume Set by Dogen Dogen Car
  • Download PDF Validation How the Skill Set That Revolutionized Psychology Will Transform Your Relatio
  • Rebel Witch The Crimson Moth Book 2 by Kristen Ciccarelli on Ipad
  • 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-06 23:28:15
Previous
Find pet by ID
Next
Update an existing pet
Built with