GET
/
api
/
v2
/
apps
/
{app}
curl --request GET \
  --url https://actions.zapier.com/api/v2/apps/{app}/ \
  --header 'x-api-key: <api-key>'
{
  "results": [
    {
      "app_needs_auth": true,
      "implementation": {
        "selected_api": "<string>",
        "app_id": 123,
        "name": "<string>",
        "slug": "<string>",
        "actions": [
          {
            "type": "<string>",
            "key": "<string>",
            "name": "<string>",
            "noun": "<string>",
            "description": "<string>",
            "is_important": true,
            "is_hidden": true,
            "needs": [
              {
                "key": "<string>",
                "type": "int",
                "label": "<string>",
                "required": true,
                "prefill": "<string>",
                "searchfill": "<string>",
                "capabilities": [
                  "<string>"
                ],
                "custom_field": true,
                "depends_on": [
                  "<string>"
                ],
                "from_search": true,
                "from_write": true,
                "input_format": [
                  "<any>"
                ],
                "language": "<string>",
                "parent_key": "<string>",
                "send_in_json": true,
                "regex": "<string>",
                "alters_custom_fields": true,
                "choices": [
                  {
                    "key": "<string>",
                    "label": "<string>",
                    "sample": "<string>"
                  }
                ],
                "default": "<string>",
                "help_text": "<string>",
                "placeholder": "<string>",
                "default_guessable": true,
                "list": true,
                "format": "<string>"
              }
            ],
            "meta": {
              "hook": {
                "directions": "<string>",
                "is_notification": true,
                "is_pollable": true,
                "is_polling_notification": true,
                "is_subscription": true,
                "url": "<string>"
              }
            },
            "popularity": 123,
            "app_name": "<string>"
          }
        ],
        "auth_type": "<string>",
        "auth_fields": [
          {
            "computed": true,
            "key": "<string>",
            "required": true,
            "type": "int",
            "label": "<string>",
            "help_text": "<string>"
          }
        ],
        "is_deprecated": false,
        "is_private_only": false,
        "is_invite_only": false,
        "is_beta": false,
        "is_premium": false,
        "is_hidden": false
      },
      "details": {
        "current_implementation_id": "<string>",
        "name": "<string>",
        "slug": "<string>",
        "description": "<string>",
        "categories": [
          {
            "title": "<string>",
            "description": "<string>"
          }
        ],
        "age_in_days": 123,
        "app_profile_url": "<string>",
        "banner": "<string>",
        "canonical_id": "<string>",
        "days_since_last_update": 123,
        "external_url": "<string>",
        "hashtag": "<string>",
        "id": 123,
        "image": "<string>",
        "images": {
          "url_16_x16": "<string>",
          "url_32_x32": "<string>",
          "url_64_x64": "<string>",
          "url_128_x128": "<string>"
        },
        "internal_id": 123,
        "is_beta": true,
        "is_built_in": true,
        "is_featured": true,
        "is_premium": true,
        "is_public": true,
        "is_upcoming": true,
        "learn_more_url": "<string>",
        "popularity": 123,
        "request_count": 123,
        "zap_usage_count": 123,
        "invite_url": "<string>",
        "primary_color": "<string>"
      }
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

app
string
required

The app to get details for.

Response

200 - application/json
OK
results
object[]
required