Logo
30daysofpostman API Documentation

Get all APIs

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

This call fetches all the APIs present in the specified workspace

Response contains an array named apis which would contain all the details of APIs present in the workspace.

Requires API Key as X-Api-Key request header or apikey URL query parameter.

 

Body PARAM

Key Datatype Required Description 
workspace
string Only return APIs that are inside the given workspace.
since
string Only return APIs that have been updated after this time. Time is represented using the ISO 8601 date and time format.
until
string Only return APIs that have been updated before this time. Time is represented using the ISO 8601 date and time format.
createdBy
string Only return APIs that have been created by the user ID represented by the given value.
updatedBy
string Only return APIs that have been updated by the user ID represented by the given value.
isPublic
string Only return APIs with the corresponding privacy state. Public APIs have the isPublic value true; private APIs have the isPublic value false.
name
string Only return APIs whose name includes the given value. Matching is case insensitive.
summary
Curl
curl -X GET 'https://api.getpostman.com/apis?workspace=c90a3482-f80d-43d6-9dfb-0830f5e43605&since=since&until=until&createdBy=createdBy&updatedBy=updatedBy&isPublic=isPublic&name=name&summary=summary&description=description&sort=sort&direction=direction'

ENDPOINTS