Retrieve traffic signs restricted to the predefined area of the user

GET {{baseUrl}}/trafficsigns?page=<integer>&size=<integer>&longitudePoint1=<number>&latitudePoint1=<number>&longitudePoint2=<number>&latitudePoint2=<number>&lonelySign=<boolean>&minConfidence=<float>&permanency=<string>&type=<string>

This endpoint returns a set of traffic signs restricted to the predefined area of the user. The traffic signs data is returned in a paged response. If there are no traffic signs in the defined area, an empty list is returned. Note that missing fields in individual traffic sign data are returned as null values. To additionally limit the returned data, a bounding box can be defined as geolocation filter. The bounding box is defined by two points, each represented by a longitude and a latitude coordinate. The first point is defined by the longitudePoint1 and latitudePoint1 query parameters. The second point is defined by the longitudePoint2 and latitudePoint2 query parameters. All four query parameters are optional, but if one of them is provided, all four must be provided to define a bounding box as geolocation filter. Besides the bounding box, the traffic signs data can also be filtered by the lonely sign, the confidence, the permanency, and the type of the traffic sign. If more than one filter is provided, the filters are combined with a logical AND.

Request Params

KeyDatatypeRequiredDescription
pagestringThe page number used for the pagination
sizestringThe size of the response page used for the pagination. If the requested page size exceeds the maximum allowed page size, a validation error is returned.
longitudePoint1stringThe longitude coordinate (x-axis) of the first point defining a bounding box as geolocation filter. Valid values are between -180 and 180.
latitudePoint1stringThe latitude coordinate (y-axis) of the first point defining a bounding box as geolocation filter. Valid values are between -90 and 90.
longitudePoint2stringThe longitude coordinate (x-axis) of the second point defining a bounding box as geolocation filter. Valid values are between -180 and 180.
latitudePoint2stringThe latitude coordinate (y-axis) of the second point defining a bounding box as geolocation filter. Valid values are between -90 and 90.
lonelySignstringBoolean value to filter lonely signs. It is intended to be used to exclude traffic signs from the returned data that are considered lonely: The parameter is set to false to only return non-lonely traffic signs. By default, all signs are returned, regardless of whether they are lonely or not.
minConfidencestringFilters the traffic signs data by the confidence value. Can be between 0 and 1. Only traffic signs data with a confidence value greater than or equal to the provided value are returned.
permanencystringFilters the traffic signs data by the permanency value. The filter is case-insensitive. Only traffic signs data with the provided permanency value are returned.
typestringFilters the traffic signs data by the type value. The filter is case-insensitive. Only traffic signs data with the provided type value are returned.

HEADERS

KeyDatatypeRequiredDescription
x-tracking-idstringthe request tracking ID
Acceptstring

RESPONSES

status: OK

{&quot;trafficSigns&quot;:[{&quot;id&quot;:&quot;\u003cuuid\u003e&quot;,&quot;latitude&quot;:&quot;\u003cfloat\u003e&quot;,&quot;longitude&quot;:&quot;\u003cfloat\u003e&quot;,&quot;heading&quot;:&quot;\u003cinteger\u003e&quot;,&quot;confidence&quot;:&quot;\u003cfloat\u003e&quot;,&quot;permanency&quot;:&quot;DYNAMIC&quot;,&quot;signValue&quot;:&quot;110&quot;,&quot;timestamp&quot;:&quot;\u003clong\u003e&quot;,&quot;type&quot;:&quot;MOTORWAY_START&quot;,&quot;lonelySign&quot;:&quot;\u003cboolean\u003e&quot;},{&quot;id&quot;:&quot;\u003cuuid\u003e&quot;,&quot;latitude&quot;:&quot;\u003cfloat\u003e&quot;,&quot;longitude&quot;:&quot;\u003cfloat\u003e&quot;,&quot;heading&quot;:&quot;\u003cinteger\u003e&quot;,&quot;confidence&quot;:&quot;\u003cfloat\u003e&quot;,&quot;permanency&quot;:&quot;VARIABLE&quot;,&quot;signValue&quot;:&quot;110&quot;,&quot;timestamp&quot;:&quot;\u003clong\u003e&quot;,&quot;type&quot;:&quot;NO_OVERTAKING_TRUCKS_END&quot;,&quot;lonelySign&quot;:&quot;\u003cboolean\u003e&quot;}],&quot;page&quot;:{&quot;size&quot;:&quot;\u003cinteger\u003e&quot;,&quot;number&quot;:&quot;\u003cinteger\u003e&quot;,&quot;totalPages&quot;:&quot;\u003cinteger\u003e&quot;,&quot;totalElements&quot;:&quot;\u003clong\u003e&quot;}}