My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download Pdf The Complete Harrow County by Cullen Bunn Tyler Crook
  • Darkwing Duck Negaduck Vol 2 The Ancient Order Of Villainy by Jeff Parker John Compton Ciro Cangia
  • PDF EPUB Download Hearing The Call by Nekesa Sepiwe Full Book
  • Youll Find Out by Lisa Jackson on Iphone New Format
  • pdf download A Crown in Shadows by Alecia B Kirby
  • Read Pdf Wafu Cooking Everyday Recipes with Japanese Style A Cookbook by Sonoko Sakai
  • Ultimo emperador de México El by Edward Shawcross on Iphone New Format
  • Heaven Sent and His Hometown Girl by Jillian Hart on Iphone New Format
  • DOWNLOADS Peerless Novel Vol. 1 by Meng Xi Shi
  • Air-Borne The Hidden History of the Life We Breathe by Carl Zimmer on Audiobook New
  • Download Pdf Wake The Hidden History of Women-Led Slave Revolts by Rebecca Hall Hugo Martïnez
  • epub download Pathfinder Adventure Path Abomination Vaults 5e by James Jacobs Vanessa Hoskins Step
  • Im Unvaccinated and Thats OK by Shannon Kroner Manfred Calderón on Audiobook New
  • Pdf ePub The Saga of Tanya the Evil Vol. 25 manga by Carlo Zen Shinobu Shinotsuki Chika Tojo Ri
  • Download PDF Fourth Wing Special Edition by Rebecca Yarros
  • download pdf Beginners Guide to Digital Painting in Clip Studio Paint Featuring tutorials by expert
  • DOWNLOADS More or Less Maddy A Novel by Lisa Genova
  • DOWNLOADS Wisconsin Wedding by Carla Neggers
  • PDF DOWNLOAD Zora the Snow Dragon Dragon Girls 15 by Maddy Mara on Iphone
  • PDF Download The Afternoon of Christianity The Courage to Change by Tomás Halík Gerald Turner
  • PDF EPUB Download Jeramiahs Power by Betsy Rose Wells Felipe Echevarria Full Book
  • epub download The Perfect Loaf The Craft and Science of Sourdough Breads Sweets and More A Baking
  • Simul by Andrew Caldecott on Audiobook New
  • Read Pdf Un año con Dios al amanecer 365 devocionales para vivir el Padre Nuestro Awak e in the
  • PDF EPUB Download The Amish Midwifes Courtship by Cheryl Williford Full Book
  • PDF EPUB Download Conclave by Robert Harris Full Book
  • Saying I Do to the Scoundrel by Liz Tyner on Iphone New Format
  • Download Pdf His Prairie Sweetheart by Erica Vetsch
  • DOWNLOADS Pseudoscience An Amusing History of Crackpot Ideas and Why We Love Them by Lydia Kang MD
  • Download Pdf Cooking and the Crown Royal Recipes from Queen Victoria to King Charles III A Cookbook
  • DOWNLOAD PDF EPUB Say Youll Remember Me by Abby Jimenez
  • Read online The Worlds Fastest Level Up Manga Vol. 4 by Nagato Yamata Atsushi Suzumi Fame
  • Download PDF Foundations of Computer Vision by Antonio Torralba Phillip Isola William T. Freeman
  • Read online Beatrix Bakes Another Slice by Natalie Paull
  • download pdf Safe Haven Investing for Financial Storms by Mark Spitznagel
  • Goblin Mode How to Get Cozy Embrace Imperfection and Thrive in the Muck by McKayla Coyle on Audiob
  • epub download Hate Me but Let Me Stay Vol. 3 by Hijiki
  • DOWNLOADS A Business Proposal Vol. 8 by Haehwa NARAK Perilla
  • DOWNLOADS Revenge Meghan Harry and the War Between the Windsors by Tom Bower
  • PDF DOWNLOAD A Talent for Murder A Novel by Peter Swanson on Iphone
  • DOWNLOAD PDF EPUB Little Book of Bottega Veneta The Story of the Iconic Fashion House by Frances S
  • PDF Download Twisted 1. Twisted love by Ana Huang
  • PDF EPUB Download What a Run Inside the Philadelphia Eagles Unforgettable 2024 Championship Season b
  • Read online The Road to Love Hearts in the Highlands by Linda Ford Ruth Axtell Morren
  • PDF EPUB Download Normal Women Making history for 900 years by Philippa Gregory Full Book
  • In Bloom by C. J. Skuse on Ipad
  • PDF DOWNLOAD Guilt and Ginataan by Mia P. Manansala on Iphone
  • PDF Download Crafting Leather Totes Backpacks Bags Detailed Patterns Step-by-Step Instructions
  • DOWNLOAD PDF EPUB Rainbows After Storms Vol. 2 by Luka Kobachi
  • DOWNLOAD PDF EPUB Working for God in a Godless World Vol. 2 by Aoi Akashiro Sonsho Hangetsuban
  • 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