Skip to main content
POST
/
api
/
rapidsos
/
getNearbyFeeds
Get nearby feeds
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>"
}

Authorizations

x-auth-apikey
string
header
required

Your API key for Rhombus.

Headers

x-auth-scheme
string
default:api-token
required

Authentication scheme indicator ("api-token").

Required string length: 9

Body

application/json

Request object for getting the closest 10 feeds by latitude and longitude.

latitude
number<double> | null

Latitude coordinate for finding nearby feeds

Example:

40.7128

longitude
number<double> | null

Longitude coordinate for finding nearby feeds

Example:

-74.006

width
integer<int32> | null

Width parameter for the search area

Example:

1000

Response

200 - application/json

OK

Response object containing the closest 10 feed stream URLs by latitude and longitude.

error
boolean | null
errorMsg
string | null
streamUrls
(string | null)[] | null

List of stream URLs for the closest 10 feeds

List of stream URLs for the closest 10 feeds

warningMsg
string | null