List Vault Integrations
curl --request GET \
--url https://api.example.com/vault-integrationsimport requests
url = "https://api.example.com/vault-integrations"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/vault-integrations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/vault-integrations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/vault-integrations"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/vault-integrations")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/vault-integrations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"id": "<string>",
"name": "<string>",
"type": "<string>",
"address": "<string>",
"namespace": "<string>",
"authMethod": "<string>",
"roleId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}Credentials & Vault
List Vault Integrations
List the caller’s registered vault integrations. AppRole secret_id values are never returned.
GET
/
vault-integrations
List Vault Integrations
curl --request GET \
--url https://api.example.com/vault-integrationsimport requests
url = "https://api.example.com/vault-integrations"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/vault-integrations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/vault-integrations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/vault-integrations"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/vault-integrations")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/vault-integrations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"id": "<string>",
"name": "<string>",
"type": "<string>",
"address": "<string>",
"namespace": "<string>",
"authMethod": "<string>",
"roleId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}Overview
Returns every vault integration registered by the caller. The storedsecret_id is never included in responses — only the public metadata (name, address, namespace, auth method, role ID, timestamps) is returned.
Example Request
curl -X GET "https://api.scrapengine.io/api/v1/vault-integrations" \
-H "Authorization: Bearer $SCRAPENGINE_API_KEY"
const response = await fetch(
"https://api.scrapengine.io/api/v1/vault-integrations",
{
headers: {
"Authorization": `Bearer ${process.env.SCRAPENGINE_API_KEY}`,
},
},
);
const data = await response.json();
import requests
response = requests.get(
"https://api.scrapengine.io/api/v1/vault-integrations",
headers={"Authorization": f"Bearer {SCRAPENGINE_API_KEY}"},
)
data = response.json()
Response
Success Response (200)
Returns an array of integration records.string
Integration ID (UUID).
string
Human-readable name.
string
Backend type. Always
hashicorp in v1.string
Vault address.
string
Vault Enterprise namespace, or
null if unset.string
Auth method. Always
approle in v1.string
AppRole role_id.
string
ISO 8601 timestamp.
string
ISO 8601 timestamp.
[
{
"id": "5f8c6a74-5f2e-4f5a-9e58-5b9c3c7d2a11",
"name": "prod-vault",
"type": "hashicorp",
"address": "https://vault.prod.example.com:8200",
"namespace": null,
"authMethod": "approle",
"roleId": "8f2e1c0c-0e4a-4b58-8b2e-4a9e1c8a4a11",
"createdAt": "2026-04-24T09:12:44Z",
"updatedAt": "2026-04-24T09:12:44Z"
}
]
Error Responses
| Status | Description |
|---|---|
401 | Unauthorized — invalid or missing API key. |
Was this page helpful?