My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read Pdf The Happy Writer Get More Ideas Write More Words and Find More Joy from First Draft to
  • From Blood and Ash by Jennifer L. Armentrout on Iphone New Format
  • Read pdf Soldiers of the Imperium by Steve Lyons
  • Throne of Light by Guy Haley on Iphone New Format
  • download pdf Lethal Vengeance by Robert Bryndza
  • A Real Negro Girl Fredi Washington and the New Negro Renaissance by Laurie A. Woodard on Ipad
  • PDF DOWNLOAD Black in Blues How a Color Tells the Story of My People by Imani Perry on Iphone
  • Pdf ePub The Killings at Kingfisher Hill The New Hercule Poirot Mystery by Sophie Hannah download e
  • DOWNLOAD PDF EPUB 2020 One City Seven People and the Year Everything Changed by Eric Klinenberg
  • Read Pdf Roger Williams and His World A History in Documents by Charlotte Carrington-Farmer
  • Pdf ePub Awakened by You Sapphic Short Stories by Lee Hill download ebook
  • pdf download A Real Negro Girl Fredi Washington and the New Negro Renaissance by Laurie A. Woodard
  • Download PDF Choking on Love Vol. 1 by Keiko Iwashita
  • download pdf Cat Kid Comic Club From the Creator of Dog Man by Dav Pilkey
  • Download Pdf Metal Gear Solid 2 The Novel Sons of Liberty by Raymond Benson
  • Homes for Living The Fight for Social Housing and a New American Commons by Jonathan Tarleton on Aud
  • Download Pdf Barley Patch by Gerald Murnane
  • PDF Download Llamame por tu nombre Call Me by Your Name by Andre Aciman
  • PDF Download Not Your Biggest Fan by Sara Ney
  • epub download Sugar Apple Fairy Tale Vol. 5 light novel The Silver Sugar Master and the Purple Prom
  • PDF EPUB Download Thieves of Purpose Overcoming the 12 Mindsets Robbing You of Your Potential Self H
  • Read pdf The Rising of the Shield Hero Volume 23 The Manga Companion by Aneko Yusagi
  • Mister Jack Requiem by Chris Kosarich on Ipad
  • PDF Kindle The Love Collection Love Gelato Love Luck Love Olives by Jenna Evans Welch
  • download pdf Vagabondo by Paul Freeman
  • pdf download Happy Fathers Day from the Crayons by Drew Daywalt Oliver Jeffers
  • Millionaire Mission A 9-Step System to Level Up Your Finances and Build Wealth by Brian Preston on I
  • DOWNLOAD PDF EPUB Lets Eat Italy Everything You Want to Know About Your Favorite Cuisine by Franço
  • Read Pdf Out of Sight Into Mind The History and Philosophy of Yogic Perception by Jed Forman
  • download pdf Gliff A Novel by Ali Smith
  • 2023 Lippincott Pocket Drug Guide for Nurses by Lippincott Williams Wilkins on Ipad
  • Download PDF Good Material by Dolly Alderton
  • pdf download The Secret Fire of Alchemy Kriya Yoga Kundalini and Shamanism by Kevin B. Turner
  • Read pdf Mind Your Body A Revolutionary Program to Release Chronic Pain and Anxiety by Nicole J. S
  • epub download Scales and Honor The City of Light by Justin a Lee Aryn Storm
  • Download PDF Norwegian Method The Culture Science and Humans Behind the Groundbreaking Approach to
  • PDF EPUB Download Platform Engineering A Guide for Technical Product and People Leaders by Camil
  • PDF EPUB Download Natural History of Silence by Jérôme Sueur Helen Morrison Full Book
  • PDF EPUB Download The Psychology of Fashion by Carolyn Mair Full Book
  • Download Pdf Lost Stick by Anoosha Syed
  • Hurt You by Marie Myung-Ok Lee on Iphone New Format
  • PDF The Leadership Spectrum A Continuum of Empathetic Leader Behaviors by Barbara Welss Eversole
  • Pdf ePub Alchemy of Secrets by Stephanie Garber download ebook
  • Read Pdf Isaac Murphy The Rise and Fall of a Black Jockey by Katherine C. Mooney
  • download pdf The Violence of Love Race Family and Adoption in the United States by Kit W. Myers
  • Pdf ePub Temperatures Rising A Spicy Black Romance by Brenda Jackson download ebook
  • pdf download Niacin The Real Story 2nd Edition by Andrew W. Saul MS PhD Abram Hoffer MD Harold D.
  • Online Read Ebook Why I Dyed My Hair Purple and Other Unorthodox Stories by Kori Morgan
  • Nothing Ever Happens Here by Seraphina Nova Glass on Ipad
  • Princess of Dune by Brian Herbert Kevin J. Anderson 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

Finds Pets by status

GET
/pet/findByStatus
pet
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/pet/findByStatus?status'
Response Response Example
200 - Success 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"
        },
        {
            "name": "White Dog",
            "photoUrls": [
                "http://dummyimage.com/400x400"
            ],
            "id": 3,
            "category": {
                "id": 71,
                "name": "Dog"
            },
            "tags": [
                {
                    "id": 22,
                    "name": "Dog"
                }
            ],
            "status": "sold"
        }
    ]
}

Request

Query Params
status
string 
required
Status values that need to be considered for filter

Responses

🟢200OK
application/json
Body
array of:
id
integer <int64>
required
Pet ID
>= 1
category
object (Category) 
required
group
id
integer <int64>
optional
Category ID
>= 1
name
string 
optional
Category Name
name
string 
required
name
Example:
doggie
photoUrls
array[string]
required
image URL
tags
array[object (Tag) {2}] 
required
tag
id
integer <int64>
optional
Tag ID
>= 1
name
string 
optional
Tag Name
status
enum<string> 
required
Pet Sales Status
Allowed values:
availablependingsold
🟠400Invalid status value
Previous
Deletes a pet
Built with