Directory entries
Returns the list of directory entries with paging navigation links. Optionally filtered by address, tag, or arbitrary search string. This API endpoint follows Stellar Horizon API response format convention. A response result contains records and navigation links.
Query examples:
Fetch information about multiple accounts in one call
curl -g "https://api.stellar.expert/explorer/directory?address[]=GA6HCMBLTZS5VYYBCATRBRZ3BZJMAFUDKYYF6AH6MVCMGWMRDNSWJPIH&address[]=GAP5LETOV6YIE62YAM56STDANPRDO7ZFDBGSNHJQIYGGKSMOZAHOOS2S"
Search for Kraken's deposit account
curl "https://api.stellar.expert/explorer/directory?search=kraken"
Find accounts tagged as malicious or unsafe
curl -g "https://api.stellar.expert/explorer/directory?tag[]=malicious&tag[]=unsafe"
Lookup addresses reported for "staking"-related scams
curl -g "https://api.stellar.expert/explorer/directory?tag[]=malicious&search=stacking"
Query parameters
Applies a filter by the addresses list (up to 50 per request)
[ "GAB6FD5BCBVVQINU5USYV5K4JDAEO6RDL2GZU4K5BILPI6B4FIOF6QWW" ]
Applies a filter by tags
Applies a full-test search filter by an entry address, name, or domain
Account address (ED25519 public key)
An address from which to continue search (refers to the paging_token value from a results set)
Results sorting order
Results sorting order
Results data page size
Results data page size
Response
Directory entries fetched
Example response
{
"_embedded": {
"records": [
{
"address": "GAB6FD5BCBVVQINU5USYV5K4JDAEO6RDL2GZU4K5BILPI6B4FIOF6QWW",
"paging_token": "GAB6FD5BCBVVQINU5USYV5K4JDAEO6RDL2GZU4K5BILPI6B4FIOF6QWW"
}
]
}
}