Getting Started
Production Data
- Projects
- Locations
- Events
- Datapoints
- Evidence
Credit Inventory Management
- Orders
Account Admin
- Account
Datapoints
List all datapoints on an event
Datapoints
List all datapoints on an event
Lists all datapoints on a specific project.
GET
/
projects
/
{project_id}
/
events
/
{event_id}
/
data_points
curl --request GET \
--url https://app.gomangrove.com/api/v1/projects/{project_id}/events/{event_id}/data_points \
--header 'Authorization: <api-key>'
"{\n \"data\": [\n {\n \"id\": \"in_kiIuaGIUqRxWUmTY\",\n \"slug\": \"total-ash-delivered-wet-us-ton\",\n \"data_point_type\": \"Total Ash Delivered (wet mass) U.S. ton\",\n \"value\": 290.6,\n \"unit\": \"U.S. ton\",\n \"status\": \"complete\"\n },\n {\n \"id\": \"in_b7LLzf9PlhO4Sfco\",\n \"slug\": \"distance-biochar-transported\",\n \"data_point_type\": \"Biochar distance transported\",\n \"value\": 15.3,\n \"unit\": \"mile\",\n \"status\": \"complete\"\n },\n {\n \"id\": \"in_yC0NBPLSmtxXV9BC\",\n \"slug\": \"biochar-end-use\",\n \"data_point_type\": \"Biochar end use\",\n \"value\": \"soil amendment\",\n \"unit\": null,\n \"status\": \"complete\"\n }\n ],\n \"info\": {\n \"items\": 3,\n \"page_size\": 10,\n \"total_items\": 3,\n \"current_page\": 1,\n \"next_page\": null,\n \"previous_page\": null,\n \"total_pages\": 1,\n \"sort\": [],\n \"filter\": []\n }\n}"
Authorizations
Response
200
application/json
200
The response is of type object
.
curl --request GET \
--url https://app.gomangrove.com/api/v1/projects/{project_id}/events/{event_id}/data_points \
--header 'Authorization: <api-key>'
"{\n \"data\": [\n {\n \"id\": \"in_kiIuaGIUqRxWUmTY\",\n \"slug\": \"total-ash-delivered-wet-us-ton\",\n \"data_point_type\": \"Total Ash Delivered (wet mass) U.S. ton\",\n \"value\": 290.6,\n \"unit\": \"U.S. ton\",\n \"status\": \"complete\"\n },\n {\n \"id\": \"in_b7LLzf9PlhO4Sfco\",\n \"slug\": \"distance-biochar-transported\",\n \"data_point_type\": \"Biochar distance transported\",\n \"value\": 15.3,\n \"unit\": \"mile\",\n \"status\": \"complete\"\n },\n {\n \"id\": \"in_yC0NBPLSmtxXV9BC\",\n \"slug\": \"biochar-end-use\",\n \"data_point_type\": \"Biochar end use\",\n \"value\": \"soil amendment\",\n \"unit\": null,\n \"status\": \"complete\"\n }\n ],\n \"info\": {\n \"items\": 3,\n \"page_size\": 10,\n \"total_items\": 3,\n \"current_page\": 1,\n \"next_page\": null,\n \"previous_page\": null,\n \"total_pages\": 1,\n \"sort\": [],\n \"filter\": []\n }\n}"