🎛️ Tunings
Get Tuning
This endpoint gets a single Tuning.
GET
/
v1
/
tunings
/
{tuningId}
Header
Path
curl --location --request GET 'https://api.getmetal.io/v1/tunings/{tuningId}' \
--header 'Content-Type: application/json' \
--header 'x-metal-api-key: <api-key>' \
--header 'x-metal-client-id: <client-id>' \
{
"data": {
"id": "1",
"app": "app-123",
"idA": "embedding-1",
"idB": "embedding-2",
"result": "1"
}
}
Auth Headers
x-metal-api-key
string
requiredAn API key for your org.
x-metal-client-id
string
requiredA Client ID for your org.
Params
tuningId
string
requiredThe Tuning ID
Response
data
Tuning Object
curl --location --request GET 'https://api.getmetal.io/v1/tunings/{tuningId}' \
--header 'Content-Type: application/json' \
--header 'x-metal-api-key: <api-key>' \
--header 'x-metal-client-id: <client-id>' \
{
"data": {
"id": "1",
"app": "app-123",
"idA": "embedding-1",
"idB": "embedding-2",
"result": "1"
}
}