My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read online Contested City Citizen Advocacy and Survival in Modern Baghdad by Alissa Walter
  • PDF DOWNLOAD To All the Boys Ive Loved Before Special Keepsake Edition by Jenny Han on Iphone
  • PDF DOWNLOAD The Titans Bride Vol. 2 by ITKZ on Iphone
  • PDF How to Draw Cute Animals by Angela Nguyen
  • Download Pdf Girl Forgotten by April Henry
  • PDF Kindle The Viscounts Unconventional Lady A Steamy Historical Romance Book by Virginia Heath
  • Small Country by Gaël Faye on Audiobook New
  • DOWNLOAD PDF EPUB Wisdom Stories of Tibet Tales of Magic Adventure and Bravery by Laura Burges
  • A Mistaken Match by Whitney Bailey on Iphone New Format
  • Pdf ePub Mushoku Tensei Jobless Reincarnation Manga Vol. 20 by Rifujin na Magonote Fujikawa Yuka
  • PDF EPUB Download The Christmas Target and Hidden in Shadows by Shirlee McCoy Hope White Full Boo
  • PDF Kindle Giving Light to Shadows by Nekesa Sepiwe
  • DOWNLOADS La biblioteca de los nuevos comienzos by Michiko Aoyama Marta Morros Serret
  • PDF The Court of the Caliphate of al-Andalus Four Years in Umayyad Córdoba by Eduardo Manzano Moren
  • PDF Download Frankenstein Signature Classics by Mary Shelley
  • DOWNLOAD PDF EPUB Bismillah Lets Eat Fresh and Vibrant Recipes from my Family to Yours by Zehra A
  • Download PDF The Christmas Strike by Nikki Rivers
  • DOWNLOAD PDF EPUB Korchnoi and his Chess Grandchildren by Vladimir Barsky
  • Liar Liar Vol. 1 manga by Funa Yukina Haruki Kuou konomi Kevin Gifford on Audiobook New
  • PDF Download A Short History of Queer Women by Kirsty Loehr
  • PDF EPUB Download DC Ultimate Character Guide New Edition by DK Full Book
  • PDF DOWNLOAD Stream Big The Triumphs and Turmoils of Twitch and the Stars Behind the Screen by Nat
  • epub download Off-White The Truth About Antisemitism by Rachel Shabi
  • DOWNLOAD PDF EPUB Yata-Momo Part 1 by Harada
  • pdf download A Tiny Piece of Blue A Novel by Charlotte Whitney
  • Online Read Ebook Hogwarts Legacy The Official Game Guide by Paul Davies Kate Lewis
  • PDF Download Pathfinder Adventure Path King of the Mountain Fists of the Ruby Phoenix 3 of 3 P2 by
  • Read Pdf A Batuu Adventure Star Wars Galaxys Edge by Jeneanne DeBois Bill Robinson
  • USMLE Step 1 Lecture Notes 2024-2025 7-Book Preclinical Review by Kaplan Medical on Ipad
  • DOWNLOADS American Spirits by Russell Banks
  • Download Pdf Grind Like a Grandmaster How to Keep Pressing until Your Opponent Cracks by Magnus Carl
  • Read pdf The Gift of a Child by Laura Abbot
  • PDF The New Lunar Society An Enlightenment Guide to the Next Industrial Revolution by David A. Mind
  • PDF EPUB Download The Blanket Cats by Kiyoshi Shigematsu Jesse Kirkwood Full Book
  • How to Love Better The Path to Deeper Connection Through Growth Kindness and Compassion by Yung Pu
  • Download Pdf Pieces Of A Boy A Few Queer Things That Happened by Sam Morris Otamere Guobadia
  • Online Read Ebook Sweet Pea School Growing Arranging the Gardens Most Romantic Blooms by Marryn Mat
  • Download Pdf Saying I Do to the Scoundrel by Liz Tyner
  • PDF Fatal Freeze by Michelle Karl
  • Read online FLACO The Owl Who Escaped Captivity and Won the Hearts of the World by Jonathan Hollings
  • PDF EPUB Download The Gates of Hell Unlocking the Ganymede Code and the Demonic Portals of Mount H
  • Read pdf The Summer of Broken Rules by K. L. Walther
  • Read online Hummingbird Salamander A Novel by Jeff VanderMeer
  • Read online The Dead We Honor by William W. Johnstone J. A. Johnstone
  • GMAT Official Guide 2024-2025 Book Online Question Bank by GMAC Graduate Management Admission Counc
  • pdf download Culpa mía My Fault by Mercedes Ron
  • DOWNLOAD PDF EPUB The Bounty Hunters Baby by Erica Vetsch
  • pdf download The Inconvenient Life of an Arousing Priestess Volume 1 by Yamato Fujimine Makino Mae
  • epub download The Sister North Koreas Kim Yo Jong the Most Dangerous Woman in the World by Sung-Yoo
  • epub download Pass the Monster Meat Milady 7 by Chika Mizube Kanata Hoshi Peperon
  • 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