Logo
30 Day Challange API Documentation

API

Number of APIs: 5


1. Get all APIs

GET https://api.getpostman.com/apis

Gets information about all APIs.



2. Create an API

POST https://api.getpostman.com/apis

Creates an API. Include the following properties in the api object:

  • name — A string value that contains the API's name.

You can include the following optional properties:

  • summary — A string value that contains a summary of the API.
  • description — A string value that contains the description of the API.



3. Get an API

GET https://api.getpostman.com/apis/{{apiId}}

Gets information about an API.



4. Update an API

PUT https://api.getpostman.com/apis/{{apiId}}

Updates an API. Include at least one of the following properties in the api object:

  • name — A string value that contains the API's name.
  • summary — A string value that contains a summary of the API.
  • description — A string value that contains the description of the API.



5. Delete an API

DELETE https://api.getpostman.com/apis/{{apiId}}

Deletes an API.



ENDPOINTS