Retrieve External API Configuration
curl --request GET \
--url https://api.bey.dev/v1/external-apis/{id} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.bey.dev/v1/external-apis/{id}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.bey.dev/v1/external-apis/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": "01234567-89ab-cdef-0123-456789abcdef",
"name": "<string>",
"url": "<string>",
"type": "openai_compatible_llm"
}Agents External APIs
Retrieve External API Configuration
Retrieve a single external API configuration by ID (without its secret).
GET
/
v1
/
external-apis
/
{id}
Retrieve External API Configuration
curl --request GET \
--url https://api.bey.dev/v1/external-apis/{id} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.bey.dev/v1/external-apis/{id}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.bey.dev/v1/external-apis/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": "01234567-89ab-cdef-0123-456789abcdef",
"name": "<string>",
"url": "<string>",
"type": "openai_compatible_llm"
}Authorizations
Your Beyond Presence API Key.
Path Parameters
External API configuration ID.
Response
Requested External API Configuration
Was this page helpful?