v1

latestOpenAPI 3.1.0MIT2026-07-17121736.2 KB
Directory API

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"

get/explorer/directory

Query parameters

addressAccountAddress[]

Applies a filter by the addresses list (up to 50 per request)

[
  "GAB6FD5BCBVVQINU5USYV5K4JDAEO6RDL2GZU4K5BILPI6B4FIOF6QWW"
]
tagstring[]

Applies a filter by tags

searchstring

Applies a full-test search filter by an entry address, name, or domain

cursorstring

Account address (ED25519 public key)

Example:GAB6FD5BCBVVQINU5USYV5K4JDAEO6RDL2GZU4K5BILPI6B4FIOF6QWW

An address from which to continue search (refers to the paging_token value from a results set)

order'asc' | 'desc'

Results sorting order

Example:desc

Results sorting order

limitnumber

Results data page size

Example:10

Results data page size

Response

Directory entries fetched

Example response

{
  "_embedded": {
    "records": [
      {
        "address": "GAB6FD5BCBVVQINU5USYV5K4JDAEO6RDL2GZU4K5BILPI6B4FIOF6QWW",
        "paging_token": "GAB6FD5BCBVVQINU5USYV5K4JDAEO6RDL2GZU4K5BILPI6B4FIOF6QWW"
      }
    ]
  }
}
All 12 operations