Skip to main content
GET
https://api.heyvincent.ai
/
app
/
{appId}
curl https://api.heyvincent.ai/app/123
{
  "appId": 123,
  "name": "DCA Trading Bot",
  "description": "Automated dollar-cost averaging for your portfolio",
  "contactEmail": "[email protected]",
  "appUrl": "https://example.com/app",
  "logo": "https://example.com/logo.png",
  "activeVersion": 1,
  "managerAddress": "0x1234...5678"
}
Fetch metadata about a specific app to display to your users in your frontend.

Request

appId
integer
required
The unique identifier of the app

Response

appId
integer
The unique identifier of the app
name
string
The display name of the app
description
string
A description of what the app does
contactEmail
string
Contact email for the app developer
appUrl
string
URL to the app’s homepage
Base64 encoded logo image
activeVersion
integer
The currently active version of the app
managerAddress
string
Ethereum address of the app manager
curl https://api.heyvincent.ai/app/123
{
  "appId": 123,
  "name": "DCA Trading Bot",
  "description": "Automated dollar-cost averaging for your portfolio",
  "contactEmail": "[email protected]",
  "appUrl": "https://example.com/app",
  "logo": "https://example.com/logo.png",
  "activeVersion": 1,
  "managerAddress": "0x1234...5678"
}