Verify API key
curl --request GET \
--url https://api.sand.etherfuse.com/ramp \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.sand.etherfuse.com/ramp', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/ramp"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"org_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}Organizations
Verify API key
Returns the organization ID associated with the API key. Useful for verifying credentials and connectivity.
GET
/
ramp
Verify API key
curl --request GET \
--url https://api.sand.etherfuse.com/ramp \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.sand.etherfuse.com/ramp', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/ramp"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"org_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}Authorizations
API key sent in the Authorization header.
Response
200 - application/json
The authenticated organization ID