Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.

Commit 76a6183

Browse files
chore: core-concepts/api-anatomy - change of to from
1 parent ab28830 commit 76a6183

File tree

1 file changed

+2
-2
lines changed
  • docs/core-concepts/api-calls-anatomy

1 file changed

+2
-2
lines changed

docs/core-concepts/api-calls-anatomy/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@ keywords:
1515
- anatomy
1616
description: Deriv API calls' anatomy
1717
---
18+
1819
## Subscribe and send
1920

2021
All API calls have a send functionality for making a request and receiving a response. Certain API calls also offer a subscribe functionality allowing for updates to be sent to your application when new information becomes available.
2122

2223
### Subscribe
2324

24-
Several API calls provide the `subscribe` functionality. When you subscribe to an API call, you will receive a continuous stream of data of this particular API call.
25+
Several API calls provide the `subscribe` functionality. When you subscribe to an API call, you will receive a continuous stream from data of this particular API call.
2526

2627
Some of these API calls automatically subscribe (e.g. [ticks](https://api.deriv.com/api-explorer#ticks)) and some have an optional `subscribe` field. If you pass `1` to the `subscribe` field, the subscription will start and the server will continue to send the requested data until you unsubscribe by calling the `Forget` or `Forget all` API calls.
2728

@@ -43,7 +44,6 @@ If you want to stop the message stream created by `subscribe`, you will have to
4344
For more information on the `Forget` API call, have a look at [Forget](https://api.deriv.com/api-explorer#forget) and [Forget All](https://api.deriv.com/api-explorer#forget_all) in the API explorer.
4445
:::
4546

46-
4747
## Request data
4848

4949
To make it easier for you to handle the request and response flow of your WebSocket connection, each Deriv WebSocket API call follows a standardised structure. You can use it for caching, validation, request, and response synchronisation.

0 commit comments

Comments
 (0)