Skip to main content
GET
/
v1
/
auth
/
verify
Verify API Key
curl --request GET \
  --url https://api.bey.dev/v1/auth/verify \
  --header 'x-api-key: <api-key>'
import requests

url = "https://api.bey.dev/v1/auth/verify"

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/auth/verify', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));

Authorizations

x-api-key
string
header
required

Your Beyond Presence API Key.

Response

Valid API Key