GET
/
v1
/
connect
/
apps
/
{app_id}
cURL
curl --request GET \
  --url https://api.pipedream.com/v1/connect/apps/{app_id} \
  --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
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

app_id
string
required

The name slug or ID of the app (e.g., 'slack', 'github')

Response

200 - application/json

app retrieved

Response received when retrieving a single app