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
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)

Configure credentials 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
})