My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Women Living Deliciously by Florence Given
  • Sally Face Art Lore and More by Steve Gabry on Iphone New Format
  • PDF Dark Wire The Incredible True Story of the Largest Sting Operation Ever by Joseph Cox
  • Download Pdf Predictive Astrology Tools to Forecast Your Life and Create Your Brightest Future by Be
  • PDF EPUB Download Strangers Among Us Murder in a Small Town by L.R. Wright Full Book
  • Pdf ePub Presidents at War How World War II Shaped a Generation of Presidents from Eisenhower and
  • Shapes Geometric Forms in Graphic Design by Wang Shaoqiang Genis Carreras Korbinian Lenzer on Ipho
  • PDF Download The Metabarons Second Cycle Finale by Alejandro Jodorowsky Pete Woods Jerry Frissen
  • From Trenton to Yorktown Turning Points of the Revolutionary War by John R. Maass on Ipad
  • download pdf Cities of Repetition Hong Kongs Private Housing Estates by Christian J. Lange Jason F
  • Read Pdf Lily and Hedwig - No Regrets The Memoir of Two Fearless Women by Hedwig Vicki Burkhard L
  • DOWNLOAD PDF EPUB Counterfeit Courtship by Christina Miller
  • The 100 Tactical Patterns You Must Know Workbook Practical Exercises to Spot the Key Chess Moves by
  • PDF DOWNLOAD Conquistadores A New History of Spanish Discovery and Conquest by Fernando Cervantes
  • PDF DOWNLOAD My Weirdtastic School 6 Ms. Greene Is Mean by Dan Gutman Jim Paillot on Iphone
  • Read pdf Surprise Heir for the Princess by Kate Hardy
  • Read pdf Checkmate Vol. 1 by TAN
  • A Court of Silver Flames by Sarah J. Maas on Ipad
  • DOWNLOADS One Piece Vol. 105 by Eiichiro Oda
  • An Amish Mothers Secret Past and Her Amish Suitors Secret by Jo Ann Brown Carrie Lighte on Iphone N
  • PDF EPUB Download Last Laughs by Elliott Erwitt Full Book
  • PDF EPUB Download The Secret of Secrets by Dan Brown Full Book
  • Download Pdf Grow a New Brain How Spirit and Power Plants Can Protect and Upgrade Your Brain by Albe
  • Gestalt Language Processing Supporting Autistic and Neurodivergent Children with Natural Language Ac
  • download pdf Drawn Together Studio DB Architecture and Interiors by Britt Zunino Damian Zunino Ti
  • Pdf ePub Regretting You by Colleen Hoover download ebook
  • Read online Cleat Cute A Novel by Meryl Wilsner
  • download pdf A Beautiful Second Act Saints and Soul Sisters Who Taught Me to Be a Badass Age with G
  • Eternal Night of Lockwood Adventure for ZWEIHANDER RPG by James Introcaso Daniel D. Fox Dejan Mand
  • Read pdf Eleven Madison Park The Plant-Based Chapter A Cookbook by Daniel Humm
  • PDF Be Useful Seven Tools for Life by Arnold Schwarzenegger
  • PDF EPUB Download Escape from the Isle of the Lost by Melissa de la Cruz Full Book
  • Online Read Ebook Fireborn Phoenix and the Frost Palace by Aisling Fowler
  • PDF Kindle 1 000 Deadstock Sneakers The Dream Collection by Larry Deadstock
  • epub download Crack Goes the Cascarón An Eggcellent Not-Just-for-Easter Shellebration by Sara Andrea
  • PDF Keeping Secrets by Fiona Brand
  • epub download Inkworld The Color of Revenge by Cornelia Funke
  • Online Read Ebook The Art of Joy A Novel by Goliarda Sapienza Anne Milano Appel Angelo Pellegrino
  • epub download His Convenient Royal Bride by Cara Colter
  • Serious Cryptography 2nd Edition A Practical Introduction to Modern Encryption by Jean-Philippe Aum
  • How We Live Is How We Die by Pema Chodron on Ipad
  • epub download Ascendance of a Bookworm Part 5 Volume 11 by Miya Kazuki You Shiina quof
  • PDF DOWNLOAD The Prosecutor One Mans Battle to Bring Nazis to Justice by Jack Fairweather on Iphon
  • PDF EPUB Download Talula Had a Little Dog by Love Haze Full Book
  • PDF Kindle Bone Pendant Girls by Terry S. Friedman
  • PDF EPUB Download Big Nate This Means War by Lincoln Peirce Full Book
  • Download PDF BOREAL An Anthology of Taiga Horror by Katherine Silva
  • Read online My Happy Marriage Vol. 8 light novel by Akumi Agitogi Tsukiho Tsukioka David Musto
  • Read Pdf Nocturnes for the King of Naples by Edmund White Garth Greenwell
  • Wars of Suns and Shadows by Scarlett Larsson on Iphone New Format
  • 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
Modified at 2025-06-15 22:35:15
Previous
Deletes a pet
Built with