redit.elka.dev
Open in
urlscan Pro
78.83.51.212
Public Scan
URL:
https://redit.elka.dev/
Submission: On December 19 via api from US — Scanned from US
Submission: On December 19 via api from US — Scanned from US
Form analysis
0 forms found in the DOMText Content
File Edit Insert Generate Server Generate Client About 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 openapi: 3.0.3 info: title: Swagger Petstore - OpenAPI 3.0 description: |- This is a sample Pet Store Server based on the OpenAPI 3.0 specification. You can find out more about Swagger at [https://swagger.io](https://swagger.io). In the third iteration of the pet store, we've switched to the design first approach! You can now help us improve the API whether it's by making changes to the definition itself or to the code. That way, with time, we can improve the API in general, and expose some of the new features in OAS3 . _If you're looking for the Swagger 2.0/OAS 2.0 version of Petstore, then click [here](https ://editor.swagger.io/?url=https://petstore.swagger.io/v2/swagger.yaml). Alternatively, you can load via the `Edit > Load Petstore OAS 2.0` menu option!_ Some useful links: - [The Pet Store repository](https://github.com/swagger-api/swagger-petstore) - [The source API definition for the Pet Store](https://github.com/swagger-api/swagger-petstore /blob/master/src/main/resources/openapi.yaml) 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 version: 1.0.11 externalDocs: description: Find out more about Swagger url: http://swagger.io servers: - url: https://petstore3.swagger.io/api/v3 tags: - name: pet description: Everything about your Pets externalDocs: description: Find out more url: http://swagger.io - name: store description: Access to Petstore orders externalDocs: description: Find out more about our store url: http://swagger.io - name: user description: Operations about user paths: /pet: put: tags: - pet summary: Update an existing pet description: Update an existing pet by Id operationId: updatePet requestBody: description: Update an existent pet in the store content: application/json: schema: $ref: '#/components/schemas/Pet' application/xml: schema: $ref: '#/components/schemas/Pet' application/x-www-form-urlencoded: schema: $ref: '#/components/schemas/Pet' required: true responses: '200': description: Successful operation content: application/json: schema: $ref: '#/components/schemas/Pet' application/xml: schema: $ref: '#/components/schemas/Pet' '400': description: Invalid ID supplied '404': description: Pet not found '422': description: Validation exception security: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX SWAGGER PETSTORE - OPENAPI 3.0 1.0.11 OAS 3.0 This is a sample Pet Store Server based on the OpenAPI 3.0 specification. You can find out more about Swagger at https://swagger.io. In the third iteration of the pet store, we've switched to the design first approach! You can now help us improve the API whether it's by making changes to the definition itself or to the code. That way, with time, we can improve the API in general, and expose some of the new features in OAS3. If you're looking for the Swagger 2.0/OAS 2.0 version of Petstore, then click here. Alternatively, you can load via the Edit > Load Petstore OAS 2.0 menu option! Some useful links: * The Pet Store repository * The source API definition for the Pet Store Terms of service Contact the developer Apache 2.0 Find out more about Swagger Servers https://petstore3.swagger.io/api/v3 Authorize PET EVERYTHING ABOUT YOUR PETS FIND OUT MORE PUT /pet Update an existing pet POST /pet Add a new pet to the store 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 FIND OUT MORE ABOUT OUR STORE 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 POST /user Create user 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} Update user DELETE /user/{username} Delete user SCHEMAS Order Customer Address Category User Tag Pet ApiResponse