Recycling Centres
Returns a list of all recycling centres on the island.
GET /v1/recycling
Response
- 200 (OK)
- Schema
This is a sample response.
Status: 200 (OK)
{
"results": [
{
"id": "010c4d66-cd8b-49da-a130-c13d2960e50c",
"createdAt": "2024-06-17T07:23:12.000Z",
"location": "St Peter's Valley",
"parish": "St Lawrence",
"latitude": 49.21099100,
"longitude": -2.16082400,
"notes": "Opposite Victoria in the Valley",
"services": [
"BATTERIES",
"CARDBOARD",
"METAL_PACKAGING",
"PAPER",
"PLASTIC_BOTTLES",
"MIXED_TEXTILES"
]
},
{
"id": "020730a8-62b3-4abe-a05b-ae69e3b79e7e",
"createdAt": "2024-06-17T07:23:12.000Z",
"location": "St Luke's Church",
"parish": "St Saviour",
"latitude": 49.17923000,
"longitude": -2.09597000,
"notes": null,
"services": [
"METAL_PACKAGING_DRINK_CANS"
]
}
]
}
Root
Key | Type | Description |
---|---|---|
results | Array | Array of RecyclingCentre s. See example response. |
RecyclingCentre
Key | Type | Description |
---|---|---|
id | UUID | A unique ID to represent this recycling centre |
location | String | A short description of the location of this recycling centre |
parish | String | The parish the recycling centre is located in |
latitude | Number/null | The latitude of the recycling centre |
longitude | Number/null | The longitude of the recycling centre |
services | Array | An array of services offered at this recycling centre. See Services below for enum values |
notes | String/null | Any notes |
Enums
Services
Key | Description |
---|---|
MIXED_TEXTILES | Mixed textiles |
BATTERIES | Batteries |
CARDBOARD | Cardboard |
METAL_PACKING | Metal packaging |
METAL_PACKAGING_DRINK_CANS | Metal packaging (drinks cans only) |
PAPER | Paper |
PLASTIC_BOTTLES | Plastic bottles |
GLASS | Clean glass |
Example Map View
Here is an example of using the data to display all recycling centres on a map. Click on a icon for more information.
Loading...
Sources
Source |
---|
Recycling centre locations on opendata.gov.je |
Parish recycling collection and facilities on gov.je |