🚧 The Rhombus Developer Documentation is currently in beta. For the official documentation, please visit docs.rhombus.com.
curl --request POST \
--url https://api2.rhombussystems.com/api/rapidsos/getNearbyFeeds \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"latitude": 40.7128,
"longitude": -74.006,
"width": 1000
}
'{
"error": true,
"errorMsg": "<string>",
"streamUrls": [
"<string>"
],
"warningMsg": "<string>"
}Get closest 10 feeds by lat and long
curl --request POST \
--url https://api2.rhombussystems.com/api/rapidsos/getNearbyFeeds \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"latitude": 40.7128,
"longitude": -74.006,
"width": 1000
}
'{
"error": true,
"errorMsg": "<string>",
"streamUrls": [
"<string>"
],
"warningMsg": "<string>"
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request object for getting the closest 10 feeds by latitude and longitude.
OK
Was this page helpful?