My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • U2 Song by Song by Aaron J. Sams on Ipad
  • Play of Shadows by Sebastien de Castell on Iphone New Format
  • PDF The Bones Beneath My Skin by TJ Klune
  • Read Pdf Adolescence Boy it by Aya Sakyou Yuzuki N
  • download pdf The Art and Soul of Dune Part Two by Tanya Lapointe Stefanie Broos
  • Read pdf Nightcrawler Eye on the Sky by John Tedesco Gerald Tedesco Donna Nardo
  • PDF EPUB Download Its Only a Game by Kelsea Yu Full Book
  • PDF EPUB Download Asumi-chan is Interested in Lesbian Brothels Vol. 3 by Kuro Itsuki Full Book
  • Renouncing The Mob by Derek Alan on Ipad
  • PDF EPUB Download Looking for You A Novel by Alexander McCall Smith Full Book
  • Read pdf Boruto Two Blue Vortex Vol. 1 by Masashi Kishimoto Mikio Ikemoto
  • PDF DOWNLOAD Little Vic and the Great Mafia War by Larry McShane on Iphone
  • PDF Grimm and Grimmer Classic Fairy Tales Rebooted by Mark Russell Alicja Kocurek
  • Read pdf The Official Wordscapes Puzzle Book Volume 1 by PeopleFun
  • DOWNLOADS The City and Its Uncertain Walls A Novel by Haruki Murakami Philip Gabriel
  • Read Pdf My Little Pony Set Your Sail by Megan Brown Casey Gilly Amy Mebberson
  • PDF Download Anne Has an Alligator by Margaret Bain Cameron Bain
  • PDF EPUB Download Handyman Saitou in Another World Vol. 6 by Ichitomo Kazutomo Sheldon Drzka Ful
  • A Kids Guide to Backyard Trees by Felicia Brower Nicole LaRue on Iphone New Format
  • DOWNLOAD PDF EPUB Marvel Studios Character Encyclopedia Updated Edition by Kelly Knox Adam Bray
  • Read Pdf The Housemaids Secret by Freida McFadden
  • DOWNLOADS Rebel Bakes 80 Deliciously Creative Cakes Bakes and Treats For Every Occasion by George H
  • DOWNLOAD PDF EPUB The Quiet Librarian A Novel by Allen Eskens
  • The Lost Passenger A Novel by Frances Quinn on Audiobook New
  • PDF The Prince and the Scribe by Logan Kelly
  • Download PDF This Is How You Lose the Time War by Amal El-Mohtar Max Gladstone
  • DOWNLOAD PDF EPUB The Kings Hidden Heir by Sharon Kendrick
  • DOWNLOAD PDF EPUB Legendary en español Caraval 2 - Ed. Coleccionista by Stephanie Garber
  • PDF The Ritual by Shantel Tessier
  • pdf download Dragon and Chameleon 02 by RYO ISHIYAMA
  • Online Read Ebook The Artists Guide to Sketching The Classic Book about Making Art on Location by Ja
  • DOWNLOADS The Knight and the Moth by Rachel Gillig
  • Read Pdf Grandmaster of Demonic Cultivation Mo Dao Zu Shi The Comic Manhua Vol. 8 by Mo Xiang To
  • epub download Sex Lives of Superheroes Wolverines Immortal Sperm Supermans Porn Career the Things
  • Read online Caledonian Road A Novel by Andrew OHagan
  • PDF SPIDER-MAN REIGN 2 by Kaare Andrews
  • Download Pdf Silent Protector by Barbara Phinney
  • Read online Poo Pile on the Prairie by Amy Hevron
  • pdf download The Bell Jar by Sylvia Plath
  • Read pdf The Travelling Cat Chronicles by Hiro Arikawa Philip Gabriel
  • PDF DOWNLOAD An Unlikely Union by Shannon Farrington on Iphone
  • PDF Download The Ranchers Baby Surprise and The Cowboys Unexpected Baby by Kat Brookes Stephanie
  • Read Pdf Violet Bent Backwards Over the Grass by Lana Del Rey
  • Read online Beginners Guide to Digital Painting in Clip Studio Paint Featuring tutorials by expert p
  • PDF EPUB Download In Sunshine or in Shadow A Molly Murphy Mystery by Rhys Bowen Clare Broyles Ful
  • PDF Word Search Challenge 100 Puzzles to do anywhere anytime by Roland Hall
  • Read online Turned Around Replying to the Most Common Objections Against the Traditional Latin Mass
  • Online Read Ebook The Perfect Marriage Collectors Edition by Jeneva Rose
  • Online Read Ebook A Most Tolerant Little Town The Explosive Beginning of School Desegregation by Rac
  • The Dukes Only Desire by Anna Harrington 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

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