GET
/
v1
/
connect
/
apps
cURL
curl --request GET \
  --url https://api.pipedream.com/v1/connect/apps \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name_slug": "<string>",
      "name": "<string>",
      "auth_type": "keys",
      "description": "<string>",
      "img_src": "<string>",
      "custom_fields_json": "<string>",
      "categories": [
        "<string>"
      ],
      "featured_weight": 123
    }
  ],
  "page_info": {
    "count": 123,
    "total_count": 123,
    "start_cursor": "<string>",
    "end_cursor": "<string>"
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

after
string

The cursor to start from for pagination

before
string

The cursor to end before for pagination

limit
integer

The maximum number of results to return

q
string

A search query to filter the apps

sort_key
enum<string>

The key to sort the apps by

Available options:
name,
name_slug,
featured_weight
sort_direction
enum<string>

The direction to sort the apps

Available options:
asc,
desc
category_ids
string[]

Only return apps in these categories

The ID of an app category

Response

200 - application/json

apps listed

Response received when listing apps