provider search POST /search-all
@utdk/postman-explore /search-all
Full-text search across the public API network
Search for collections, workspaces, requests, flows, and teams by text query. Supports filtering by entity type via queryIndices and pagination via from/size. This powers the search bar at postman.com/search.

Try it

Authentication
Configure credentials for Postman Explore API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.

Saved automatically to browser storage.

searchall
POST/search-all
Search for collections, workspaces, requests, flows, and teams by text query. Supports filtering by entity type via queryIndices and pagination via from/size. This powers the search bar at postman.com/search.

Input

required

Search query text

required

Number of results to return

Pagination offset

Search domain scope

required

Entity types to search across

Additional filters (empty object for no filters)

Enter a gateway URL above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import postman_explore from '@utdk/postman-explore';

await postman_explore.searchall({
  "size": 10,
  "from": 0,
  "domain": "public",
  "mergeEntities": true,
  "nested": false,
  "nonNestedRequests": true
})