Jump to
Ctrl
+
/

List Synced Addresses

GET
/addresses-historical/manage/{blockchain}/{network}

Through this endpoint, users can retrieve a comprehensive list of all addresses synced with Crypto APIs, including their synchronization status and any associated data available for tracking and operations.

Path Parameters

blockchain string Required
network string Required

Query Parameters

context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

limit integer Optional

Defines how many items should be returned in the response per page basis.

Default : 50
startingAfter string Optional

Defines the id of the previous listed record id from which the current list should start from.

Response Schema

apiVersion string Required

Specifies the version of the API that incorporates this endpoint.

2024-12-12
requestId string Required

Defines the ID of the request. The requestId is generated by Crypto APIs and it's unique for every request.

601c1710034ed6d407996b30
context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

yourExampleString
data object Required
limit integer Required

Defines how many items should be returned in the response per page basis.

50
startingAfter string Optional

Defines the id of the previous listed record id from which the current list should start from.

5ca21f92cf5431000105d1a7
hasMore boolean Required

Defines whether or not there are more elements available after this set.

true
nextStartingAfter string Optional

Defines the id of the next page which the next list should start from.

5ca21f92cf5431000105d1a7
sortingOrder string Optional

Defines what the sorting order is either ascending or descending.

ascending
items array Items (object) Required
address string Required

String representation of the address

0x3d0b25fe09e2cd92f06ba776391a122519936e90
blockchain string Required

Represents the specific blockchain protocol name, e.g. Bitcoin, etc.

ethereum
id string Required

Record identificator used for pagination startingAfter

65f8d5e0c35b1cca17c9af05
isActive boolean Required

Defines whether the synchronization is active or not.

true
network string Required

Represents the name of the blockchain network used; blockchain networks are usually identical as technology and software, but they differ in data, e.g. - "mainnet" is the live network with actual data while networks like "testnet", "sepolia" are test networks.

sepolia
syncStatus string Required

String representation of the synchronization status

completed

Credits Cost : 100 Credits for 1 Results

Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2024-12-12",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "limit": 50,
        "startingAfter": "5ca21f92cf5431000105d1a7",
        "hasMore": true,
        "nextStartingAfter": "5ca21f92cf5431000105d1a7",
        "sortingOrder": "ascending",
        "items": [
            {
                "address": "0x3d0b25fe09e2cd92f06ba776391a122519936e90",
                "blockchain": "ethereum",
                "id": "65f8d5e0c35b1cca17c9af05",
                "isActive": true,
                "network": "sepolia",
                "syncStatus": "completed"
            }
        ]
    }
}