Streets
Get Streets
API Documentation
Governance
- Organisations
- Schemes
- Work Orders
- Permits
- Operations
- Properties
- Streets
Data Capture
- Forms
- Form Categories
- Submissions
- Submission Versions
Operations
- Reinstatements
Assets
- Vehicles
Admin
- IAM
Streets
Get Streets
Finds streets
GET
/
v3
/
governance
/
streets
curl --request GET \
--url https://api.ctrl-hub.com/v3/governance/streets \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"type": "streets",
"id": "ec2176a1-2c1b-42fb-a81a-edbe10b7b19f",
"attributes": {
"usrn": 4601764,
"location": {
"coordinates": [
[
[
640921.4380000001,
310210.6919999998,
0
],
[
641634.2631999999,
309910.6437999997,
0
]
]
],
"type": "MultiLineString"
}
}
}
]
}
Authorizations
To understand how to authenticate, see the auth docs
Query Parameters
Limit the number of resources returned by the API
Offset for resources returned by the API
Response
200
application/json
The type of resource
Available options:
streets
Example:
"streets"
The street ID
Example:
"ec2176a1-2c1b-42fb-a81a-edbe10b7b19f"
curl --request GET \
--url https://api.ctrl-hub.com/v3/governance/streets \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"type": "streets",
"id": "ec2176a1-2c1b-42fb-a81a-edbe10b7b19f",
"attributes": {
"usrn": 4601764,
"location": {
"coordinates": [
[
[
640921.4380000001,
310210.6919999998,
0
],
[
641634.2631999999,
309910.6437999997,
0
]
]
],
"type": "MultiLineString"
}
}
}
]
}