API Keys
API keys offer an alternate method of authentication to the Meltano Cloud API using a client ID and secret.
Objects
API Key
| Path | JSON Type | Format | Description |
|---|---|---|---|
id | string | Version 4 UUID | The API key ID |
created | string | ISO 8601 timestamp | The instant when the API key was created |
lastModified | string | ISO 8601 timestamp | The instant when the API key was last modified |
name | string | The API key name | |
clientId | string | The API key client ID | |
profileId | string | The API key owner profile ID |
{
"id" : "ae6e7736-368c-4c18-95b5-bd2c3919ed36",
"created" : "2026-06-19T18:19:13.485702",
"lastModified" : "2026-06-19T18:19:13.485704",
"name" : "SIT-generated api key (2026-06-19T18:19:13.440212194)",
"clientId" : "KekxnlPOnMHhYuHfQRqsupmjmW0VOA2c",
"profileId" : "auth0|6a21dc7aa1db2e036a222942",
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36"
},
"update apikey" : {
"href" : "https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36"
},
"delete apikey" : {
"href" : "https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36"
},
"profile" : {
"href" : "https://app.matatika.com/api/profiles/auth0%7C6a21dc7aa1db2e036a222942"
}
}
}
Requests
View all API keys
GET /api/apikeys
Returns all API keys owned by the authenticated user profile.
Prerequisites
- The authenticated user must own a Meltano Cloud account
- The API key
{apikey-id}must exist
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/apikeys' -i -X GET
import requests
url = "https://app.matatika.com/api/apikeys"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
API key collection with HAL links.
{
"_embedded" : {
"apikeys" : [ {
"id" : "63257c21-2749-4c1a-8e98-dbe585aab3ce",
"created" : "2026-06-19T18:19:12.265414",
"lastModified" : "2026-06-19T18:19:12.265415",
"name" : "default",
"clientId" : "jdqqiLKPQlqPIXknbhfntmPJ0o6kvcSk",
"profileId" : "auth0|6a21dc7aa1db2e036a222942",
"accessToken" : "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJFRkNRamczTlRRMk16QTROalpHT0RjNFFUWkJOemMyTkRGR1FUSkVOVEEyUkRkR1JrSkRPQSJ9.eyJpc3MiOiJodHRwczovL2lkZW50aXR5Lm1hdGF0aWthLmNvbS8iLCJzdWIiOiJqZHFxaUxLUFFscVBJWGtuYmhmbnRtUEowbzZrdmNTa0BjbGllbnRzIiwiYXVkIjoiaHR0cHM6Ly9hcHAubWF0YXRpa2EuY29tL2FwaSIsImlhdCI6MTc4MTg5MzE1MywiZXhwIjoxNzgxOTc5NTUzLCJndHkiOiJjbGllbnQtY3JlZGVudGlhbHMiLCJhenAiOiJqZHFxaUxLUFFscVBJWGtuYmhmbnRtUEowbzZrdmNTayJ9.LNSHhkVD1UFpARRtcJOFTwOQSs3eQIE4s8bKa2g2mIlkXFtLnIBNMH2BIFR-NgV8OhwWnKWoItYDQcJyXMpXUBkyKAC-wT047uYgOBwTR3W0eip2qyCQCNyqWX6u3YyBFcPJlBA3Dn_YikgXOiMzJ86UIQWbkpQ11w9lwS--K6Y02IwDtuvnVx25W5PU-j-M-BgB7WL7Qpa1w9P_ONa42Tjkh0Huq86YMpfLagPw6wE8_TwEKqr4pGmkmQXR-S3sjQl_JI9fkayx12F6WhPL1NzO1zv-Mgievj9K14nqkZetiUHd8oNZIZWseT0bxbp0O_LONrfjbDxoD-M8yVO8sg",
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/apikeys/63257c21-2749-4c1a-8e98-dbe585aab3ce"
},
"update apikey" : {
"href" : "https://app.matatika.com/api/apikeys/63257c21-2749-4c1a-8e98-dbe585aab3ce"
},
"delete apikey" : {
"href" : "https://app.matatika.com/api/apikeys/63257c21-2749-4c1a-8e98-dbe585aab3ce"
},
"profile" : {
"href" : "https://app.matatika.com/api/profiles/auth0%7C6a21dc7aa1db2e036a222942"
}
}
}, {
"id" : "ae6e7736-368c-4c18-95b5-bd2c3919ed36",
"created" : "2026-06-19T18:19:13.485702",
"lastModified" : "2026-06-19T18:19:13.485704",
"name" : "SIT-generated api key (2026-06-19T18:19:13.440212194)",
"clientId" : "KekxnlPOnMHhYuHfQRqsupmjmW0VOA2c",
"profileId" : "auth0|6a21dc7aa1db2e036a222942",
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36"
},
"update apikey" : {
"href" : "https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36"
},
"delete apikey" : {
"href" : "https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36"
},
"profile" : {
"href" : "https://app.matatika.com/api/profiles/auth0%7C6a21dc7aa1db2e036a222942"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/apikeys?page=0&size=20"
}
},
"page" : {
"size" : 20,
"totalElements" : 2,
"totalPages" : 1,
"number" : 0
}
}
View an API key
GET /api/apikeys/{apikey-id}
Returns the API key {apikey-id}.
Prerequisites
- The authenticated user must own a Meltano Cloud account
- The API key
{apikey-id}must exist
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36' -i -X GET
import requests
url = "https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("GET", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
API key with HAL links.
{
"id" : "ae6e7736-368c-4c18-95b5-bd2c3919ed36",
"created" : "2026-06-19T18:19:13.485702",
"lastModified" : "2026-06-19T18:19:13.485704",
"name" : "SIT-generated api key (2026-06-19T18:19:13.440212194)",
"clientId" : "KekxnlPOnMHhYuHfQRqsupmjmW0VOA2c",
"profileId" : "auth0|6a21dc7aa1db2e036a222942",
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36"
},
"update apikey" : {
"href" : "https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36"
},
"delete apikey" : {
"href" : "https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36"
},
"profile" : {
"href" : "https://app.matatika.com/api/profiles/auth0%7C6a21dc7aa1db2e036a222942"
}
}
}
Initialise an API key
POST /api/apikeys
Initialises a new API key.
Prerequisites
- The authenticated user must own a Meltano Cloud account
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/apikeys' -i -X POST \
-H 'Content-Type: application/json'
import requests
url = "https://app.matatika.com/api/apikeys"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("POST", url, headers=headers)
print(response.text.encode('utf8'))
Response
200 OK
API key with HAL links.
{
"id" : "ae6e7736-368c-4c18-95b5-bd2c3919ed36",
"created" : "2026-06-19T18:19:13.393819866",
"lastModified" : "2026-06-19T18:19:13.393820349",
"profileId" : "auth0|6a21dc7aa1db2e036a222942",
"_links" : {
"create apikey" : {
"href" : "https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36"
}
}
}
Create an API key
PUT /api/apikeys/{apikey-id}
Creates the API key {apikey-id}.
Prerequisites
- The authenticated user must own a Meltano Cloud account
Body
API key resource.
{
"name" : "SIT-generated api key (2026-06-19T18:19:13.440212194)"
}
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36' -i -X PUT \
-H 'Content-Type: application/json' \
-d '{
"name" : "SIT-generated api key (2026-06-19T18:19:13.440212194)"
}'
import requests
url = "https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36"
data = {
"name" : "SIT-generated api key (2026-06-19T18:19:13.440212194)"
}
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("PUT", url, headers=headers, data=data)
print(response.text.encode('utf8'))
Response
201 Created
API key with HAL links.
{
"id" : "ae6e7736-368c-4c18-95b5-bd2c3919ed36",
"created" : "2026-06-19T18:19:13.485702191",
"lastModified" : "2026-06-19T18:19:13.485703501",
"name" : "SIT-generated api key (2026-06-19T18:19:13.440212194)",
"clientId" : "KekxnlPOnMHhYuHfQRqsupmjmW0VOA2c",
"clientSecret" : "JPNAnOtIwnu1qgKI2aejAWH5JcFEEsNiLeWMntKQq45Kzd4wOTQ8wEWNN9yl101Z",
"profileId" : "auth0|6a21dc7aa1db2e036a222942",
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36"
},
"update apikey" : {
"href" : "https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36"
},
"delete apikey" : {
"href" : "https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36"
},
"profile" : {
"href" : "https://app.matatika.com/api/profiles/auth0%7C6a21dc7aa1db2e036a222942"
}
}
}
Update an API key
PUT /api/apikeys/{apikey-id}
Updates the API key {apikey-id}.
Prerequisites
- The authenticated user must own a Meltano Cloud account
Body
API key resource.
{
"name" : "SIT-generated api key (2026-06-19T18:19:13.440212194) (updated)"
}
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36' -i -X PUT \
-H 'Content-Type: application/json' \
-d '{
"name" : "SIT-generated api key (2026-06-19T18:19:13.440212194) (updated)"
}'
import requests
url = "https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36"
data = {
"name" : "SIT-generated api key (2026-06-19T18:19:13.440212194) (updated)"
}
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("PUT", url, headers=headers, data=data)
print(response.text.encode('utf8'))
Response
200 OK
API key with HAL links.
{
"id" : "ae6e7736-368c-4c18-95b5-bd2c3919ed36",
"created" : "2026-06-19T18:19:13.485702",
"lastModified" : "2026-06-19T18:19:14.644838331",
"name" : "SIT-generated api key (2026-06-19T18:19:13.440212194) (updated)",
"clientId" : "KekxnlPOnMHhYuHfQRqsupmjmW0VOA2c",
"profileId" : "auth0|6a21dc7aa1db2e036a222942",
"_links" : {
"self" : {
"href" : "https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36"
},
"update apikey" : {
"href" : "https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36"
},
"delete apikey" : {
"href" : "https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36"
},
"profile" : {
"href" : "https://app.matatika.com/api/profiles/auth0%7C6a21dc7aa1db2e036a222942"
}
}
}
Delete an API key
DELETE /api/apikeys/{apikey-id}
Deletes the API key {apikey-id}.
Prerequisites
- The authenticated user must own a Meltano Cloud account
- The API key
{apikey-id}must exist
Examples
- cURL
- Python (requests)
curl -H "Authorization: Bearer $ACCESS_TOKEN" 'https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36' -i -X DELETE
import requests
url = "https://app.matatika.com/api/apikeys/ae6e7736-368c-4c18-95b5-bd2c3919ed36"
headers = {
'Authorization': ACCESS_TOKEN
}
response = requests.request("DELETE", url, headers=headers)
print(response.text.encode('utf8'))
Response
204 No Content
No response body provided.