Pipedream · Example Payload

Pipedream List Apps Example

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Pipedream List Apps Example is an example object payload from Pipedream, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.pipedream.com/v1/apps?limit=10",
    "headers": {
      "Authorization": "Bearer pd_oauth_xxx"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "page_info": {
        "total_count": 3000,
        "count": 10,
        "start_cursor": "a",
        "end_cursor": "b"
      },
      "data": [
        {
          "id": "app_abc123",
          "name_slug": "notion",
          "name": "Notion",
          "auth_type": "oauth",
          "description": "Notion productivity API",
          "img_src": "https://pipedream.com/s.v0/app_abc123/logo/orig"
        }
      ]
    }
  }
}