List available apps

List available apps

Endpoint

GET https://embedworkflow.com/api/v1/available_apps

Query Parameters

exclude_installed string, optional

Exclude already installed apps

Response

Returns successful.

Response Properties

collection array

No description available

meta object

No description available

Response
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
  "collection": [
    {
      "name": "GitHub",
      "app_identifier": "github",
      "description": "Collaboration platform for code hosting, issue tracking, and project management",
      "icon": {
        "type": "remote",
        "background_color": "slate:50",
        "url": "https://s3.us-east-1.amazonaws.com/cdn.ewf.to/apps/github.svg"
      },
      "latest_version": "1.0.0",
      "object": "available_app",
      "primary_category": "developer_tools",
      "secondary_category": "productivity"
    },
    {
      "name": "OpenAI",
      "app_identifier": "openai",
      "description": "AI models for text generation, embeddings, and image creation",
      "icon": {
        "type": "remote",
        "background_color": "slate:50",
        "url": "https://s3.us-east-1.amazonaws.com/cdn.ewf.to/apps/openai.svg"
      },
      "latest_version": "1.0.0",
      "object": "available_app",
      "primary_category": "artificial_intelligence",
      "secondary_category": "universal_ai"
    },
    {
      "name": "Slack",
      "app_identifier": "slack",
      "description": "Team collaboration platform with messaging, calls, and file sharing",
      "icon": {
        "type": "remote",
        "background_color": "slate:50",
        "url": "https://s3.us-east-1.amazonaws.com/cdn.ewf.to/apps/slack.svg"
      },
      "latest_version": "1.0.0",
      "object": "available_app",
      "primary_category": "communication",
      "secondary_category": "productivity"
    }
  ],
  "meta": {
    "page_limit": null,
    "has_next_page": false,
    "has_previous_page": false
  }
}