Stream Trade
Stream trade is a method used to obtain the prices of a specific pair of tokens across multiple decentralized exchanges (DEXs).
Response Schema:
Field | Description |
---|---|
type | States whether the transaction is from CEX or DEX. |
platform | Specific name of CEX or DEX platform. |
symbol | Token pair. |
price | Price of token pair. |
Streaming trades:
Users can stream trades in two ways:
Example 1: via wscat script (For Linux based distro)
First, the user needs to run the following command in their terminal to install wscat in their system:
After installing wscat, the user needs to create a shell script and paste the following sample code:
Client Side Sample Socket Code :
Once the file has been saved, the user will need to grant permission for it to be executed. This can be accomplished by executing the following command:
After following the above steps, the user needs to run the file. This can be done by entering the filename in the console.
Executing a query:
After executing the aforementioned file(shell script), the user will be prompted to input the appropriate API key.
After entering the API key, the user can subscribe to the following actions:
Make sure you are connected to the WebSocket before you perform the following queries.
Applying a filter in the query:
Users can apply the following filters in their query:-
token0
token1
The above filters can be applied in any combination, using the following syntax:
Sample Query:
Example 2. via javascript code
First, the user needs to run the following command in their terminal to install wscat in their system:
After installing ws, the user needs to run the following sample code on their device to start streaming:
Client Side Sample Socket Code :
The payload can be modified, depending on the action.
Expected Output:
How to disconnect:
To disconnect from our API, enter ctrl-c
in the connected console.
Last updated