Get all APIs

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

Gets information about all APIs.

Request Params

KeyDatatypeRequiredDescription
workspacestringOptional. Return only APIs that are inside the given workspace.
sincestringOptional. Return only APIs updated at and after this time, in ISO 8601 UTC format.
untilstringOptional. Return only APIs updated at and before this time, in ISO 8601 UTC format.
createdBystringOptional. Return only APIs created by the given user ID.
updatedBystringOptional. Return only APIs updated by the given user ID.
isPublicstringOptional. If true, return only public APIs; if false, return only private APIs.
namestringOptional. Return only APIs whose name includes the given value. Matching is not case-sensitive.
summarystringOptional. Return only APIs whose summary includes the given value. Matching is not case-sensitive.
descriptionstringOptional. Return only APIs whose description includes the given value. Matching is not case-sensitive.
sortstringOptional. Sort the results by the given value.

If you use this query parameter, you must also use the direction parameter. | | direction | string | | Optional. Sort in ascending (asc) or descending (desc) order. Matching is not case-sensitive.

If you use this query parameter, you must also use the "sort" parameter. |

RESPONSES

status: OK

{"apis":[{"createdAt":"2022-06-09T14:48:45.000Z","updatedAt":"2022-06-09T19:50:49.000Z","id":"5360b75f-447e-467c-9299-12fd6c92450d","name":"Test API","summary":"Test API.","description":"This is a test API.","createdBy":"12345678","updatedBy":"12345678","isPublic":true},{"createdAt":"2022-06-22T16:51:28.000Z","updatedAt":"2022-06-22T16:51:28.000Z","id":"69ce25ea-2914-426e-ae34-af558b6777e6","name":"Public API A","summary":"Public Test A.","description":"This is a public test API.","createdBy":"12345678","updatedBy":"12345678","isPublic":true},{"createdAt":"2022-06-30T16:51:28.000Z","updatedAt":"2022-06-30T16:51:28.000Z","id":"69ce25ea-2914-426e-ae34-af558b6777e6","name":"Public Test API B","summary":"Public Test B","description":"This is another public test API.","createdBy":"87654321","updatedBy":"87654321","isPublic":false}]}