Get standing address
Addresses and enabled state for a ref. Requires a server key.
GET
Get standing address
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Addresses and enabled state for a ref. Requires a server key.
curl --request GET \
--url https://orchestration.flashnet.xyz/v1/standing-deposit-addresses/{ref} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://orchestration.flashnet.xyz/v1/standing-deposit-addresses/{ref}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://orchestration.flashnet.xyz/v1/standing-deposit-addresses/{ref}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"standingAddressId": "<string>",
"addresses": {},
"enabled": true
}Partner API key in the form Authorization: Bearer fn_....
1 - 128Was this page helpful?
curl --request GET \
--url https://orchestration.flashnet.xyz/v1/standing-deposit-addresses/{ref} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://orchestration.flashnet.xyz/v1/standing-deposit-addresses/{ref}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://orchestration.flashnet.xyz/v1/standing-deposit-addresses/{ref}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"standingAddressId": "<string>",
"addresses": {},
"enabled": true
}