Retrieve available app

Retrieve available app

Endpoint

GET https://embedworkflow.com/api/v1/available_apps/{app_identifier}

Path Parameters

app_identifier string, required

App indentifier

Response

Returns successful.

Response Properties

name string

Name of the app

app_identifier string

Unique identifier for the app

description string

Description of the available app

icon object

Icon configuration for the available app

latest_version string

Latest available version of the app

Response
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "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",
  "schema": {},
  "secondary_category": "universal_ai"
}