Read record.
GET
/api/records/v1/{name}/subscribe/{record}
const url = 'https://example.com/api/records/v1/example/subscribe/example';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/records/v1/example/subscribe/exampleParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” name
required
string
record
required
string
Responses
Section titled “ Responses ”Starts streaming changes to matching records via SSE/WebSocket