🚀 Apps
Get an App
This endpoint retrieves the details of an app by its ID.
GET
/
v1
/
apps
/
{app_id}
Header
Path
curl --location --request GET 'https://api.getmetal.io/v1/apps/{app_id}' \
--header 'Content-Type: application/json' \
--header 'x-metal-api-key: <api-key>' \
--header 'x-metal-client-id: <client-id>'
{
"data": {
"id": "6535126922af1b89d6d22ffa",
"name": "My App",
"indexes": [
"6525639932cbb1afa1bee7e9"
]
}
}
Auth Headers
x-metal-api-key
string
requiredAn API key for your org.
x-metal-client-id
string
requiredA Client ID for your org.
Path Parameters
app_id
string
requiredThe unique ID of the app you want to retrieve.
Response
data
App Object
curl --location --request GET 'https://api.getmetal.io/v1/apps/{app_id}' \
--header 'Content-Type: application/json' \
--header 'x-metal-api-key: <api-key>' \
--header 'x-metal-client-id: <client-id>'
{
"data": {
"id": "6535126922af1b89d6d22ffa",
"name": "My App",
"indexes": [
"6525639932cbb1afa1bee7e9"
]
}
}