Skip to main content

Get realtime DB node/subtree

GET 

/realtime/db/:path

Returns the value stored at the given realtime DB path (subtree).

Request

Responses

Successful Response

Response shape

{
"path": "users/alice",
"value": {
"name": "Alice",
"status": "online"
}
}

cURL example

curl -X GET "https://mw-client-api.wonderfulcoast-218d579d.centralindia.azurecontainerapps.io/realtime/db/users/alice" \
-H "x-client-id: <client-id>" \
-H "x-client-secret: <client-secret>" \
-H "Authorization: Bearer <access-token>"