GET
/
apps
/
{app_id}
curl https://api.pipedream.com/v1/apps/app_OkrhR1 \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json"
{
  "data": {
    "id": "app_OkrhR1",
    "name_slug": "slack",
    "name": "Slack",
    "auth_type": "oauth",
    "description": "Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.",
    "img_src": "https://assets.pipedream.net/s.v0/app_OkrhR1/logo/orig",
    "custom_fields_json": "[]",
    "categories": [
      "Communication"
    ],
    "featured_weight": 1000000001,
    "connect": {
      "proxy_enabled": true,
      "allowed_domains": ["slack.com"],
      "base_proxy_target_url": "https://slack.com"
    }
  }
}

Retrieve metadata for a specific app.

Endpoint

GET /apps/{app_id}

Path Parameters

app_id
string

The ID or name slug the app you’d like to retrieve. For example, Slack’s unique app ID is app_OkrhR1, and its name slug is slack.

You can find the app’s ID in the response from the List apps endpoint, and the name slug under the Authentication section of any app page.

curl https://api.pipedream.com/v1/apps/app_OkrhR1 \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json"
{
  "data": {
    "id": "app_OkrhR1",
    "name_slug": "slack",
    "name": "Slack",
    "auth_type": "oauth",
    "description": "Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.",
    "img_src": "https://assets.pipedream.net/s.v0/app_OkrhR1/logo/orig",
    "custom_fields_json": "[]",
    "categories": [
      "Communication"
    ],
    "featured_weight": 1000000001,
    "connect": {
      "proxy_enabled": true,
      "allowed_domains": ["slack.com"],
      "base_proxy_target_url": "https://slack.com"
    }
  }
}