www.swagger.my-cloudservice.com
Open in
urlscan Pro
85.13.129.201
Public Scan
URL:
https://www.swagger.my-cloudservice.com/
Submission: On September 25 via automatic, source certstream-suspicious — Scanned from DE
Submission: On September 25 via automatic, source certstream-suspicious — Scanned from DE
Form analysis
0 forms found in the DOMText Content
File Edit Generate Server Generate Client 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 swagger: "2.0" info: description: "This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters." version: "1.0.0" title: "Swagger Petstore" termsOfService: "http://swagger.io/terms/" contact: email: "apiteam@swagger.io" license: name: "Apache 2.0" url: "http://www.apache.org/licenses/LICENSE-2.0.html" host: "petstore.swagger.io" basePath: "/v2" tags: - name: "pet" description: "Everything about your Pets" externalDocs: description: "Find out more" url: "http://swagger.io" - name: "store" description: "Access to Petstore orders" - name: "user" description: "Operations about user" externalDocs: description: "Find out more about our store" url: "http://swagger.io" schemes: - "https" - "http" paths: /pet: post: tags: - "pet" summary: "Add a new pet to the store" description: "" operationId: "addPet" consumes: - "application/json" - "application/xml" produces: - "application/xml" - "application/json" parameters: - in: "body" name: "body" description: "Pet object that needs to be added to the store" required: true schema: $ref: "#/definitions/Pet" responses: "405": description: "Invalid input" security: - petstore_auth: - "write:pets" - "read:pets" put: tags: - "pet" summary: "Update an existing pet" description: "" operationId: "updatePet" consumes: - "application/json" - "application/xml" produces: - "application/xml" - "application/json" parameters: - in: "body" name: "body" description: "Pet object that needs to be added to the store" required: true schema: $ref: "#/definitions/Pet" responses: "400": description: "Invalid ID supplied" "404": description: "Pet not found" "405": XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX SWAGGER PETSTORE 1.0.0 [ Base URL: petstore.swagger.io/v2 ] This is a sample server Petstore server. You can find out more about Swagger at http://swagger.io or on irc.freenode.net, #swagger. For this sample, you can use the api key special-key to test the authorization filters. Terms of service Contact the developer Apache 2.0 Find out more about Swagger Schemeshttpshttp Authorize PET EVERYTHING ABOUT YOUR PETS FIND OUT MORE: HTTP://SWAGGER.IO POST /pet Add a new pet to the store PUT /pet Update an existing pet GET /pet /findByStatus Finds Pets by status GET /pet /findByTags Finds Pets by tags GET /pet /{petId} Find pet by ID POST /pet /{petId} Updates a pet in the store with form data DELETE /pet /{petId} Deletes a pet POST /pet /{petId} /uploadImage uploads an image STORE ACCESS TO PETSTORE ORDERS GET /store /inventory Returns pet inventories by status POST /store /order Place an order for a pet GET /store /order /{orderId} Find purchase order by ID DELETE /store /order /{orderId} Delete purchase order by ID USER OPERATIONS ABOUT USER FIND OUT MORE ABOUT OUR STORE: HTTP://SWAGGER.IO POST /user Create user POST /user /createWithArray Creates list of users with given input array POST /user /createWithList Creates list of users with given input array GET /user /login Logs user into the system GET /user /logout Logs out current logged in user session GET /user /{username} Get user by user name PUT /user /{username} Updated user DELETE /user /{username} Delete user MODELS Order Category User Tag Pet ApiResponse