Getting Started
Production Data
- Projects
- Locations
- Events
- Datapoints
- Evidence
Credit Inventory Management
- Orders
Account Admin
- Account
Events
List event types on a project
Events
List event types on a project
Shows all configured event types that a project can accept.
GET
/
projects
/
{project_id}
/
event_types
curl --request GET \
--url https://app.gomangrove.com/api/v1/projects/{project_id}/event_types \
--header 'Authorization: <api-key>'
{
"data": [
{
"id": 1,
"slug": "feedstock-delivery",
"name": "Feedstock Delivery",
"is_static": false,
"created_at": "2025-02-03T14:19:11.787Z",
"updated_at": "2025-02-03T14:19:11.787Z",
"data_point_types": [
{
"slug": "feedstock-delivery-mass",
"name": "Mass of Feedstock Delivery",
"value_type": "number",
"unit": "U.S. ton"
},
{
"slug": "feedstock-delivery-distance",
"name": "Distance of Feedstock Delivery",
"value_type": "number",
"unit": "mile"
},
{
"slug": "feedstock-delivery-feedstock-type",
"name": "Feedstock Type",
"value_type": "string",
"unit": null
},
{
"slug": "feedstock-delivery-certification",
"name": "Feedstock Certification",
"value_type": "string",
"unit": null
},
{
"slug": "feedstock-delivery-is_processed",
"name": "Feedstock is Processed",
"value_type": "boolean",
"unit": null
}
]
},
{
"id": 2,
"slug": "co2-injection",
"name": "CO2 Injection",
"created_at": "2025-02-03T14:19:11.787Z",
"updated_at": "2025-02-03T14:19:11.787Z",
"data_point_types": [
{
"slug": "co2-injection-daily-mass",
"name": "Total Daily injected mass",
"value_type": "number",
"unit": "t"
},
{
"slug": "co2-injection-total-mass",
"name": "Total CO2 injected to date",
"value_type": "number",
"unit": "t"
},
{
"slug": "co2-injection-mass-flow-rate",
"name": "Mass flow rate of CO2 injected",
"value_type": "number",
"unit": "lb/min"
}
]
}
],
"info": {
"items": 2,
"page_size": 10,
"total_items": 2,
"current_page": 1,
"next_page": null,
"previous_page": null,
"total_pages": 1,
"sort": [],
"filter": []
}
}
Authorizations
Path Parameters
Response
200
application/json
200
The response is of type object
.
curl --request GET \
--url https://app.gomangrove.com/api/v1/projects/{project_id}/event_types \
--header 'Authorization: <api-key>'
{
"data": [
{
"id": 1,
"slug": "feedstock-delivery",
"name": "Feedstock Delivery",
"is_static": false,
"created_at": "2025-02-03T14:19:11.787Z",
"updated_at": "2025-02-03T14:19:11.787Z",
"data_point_types": [
{
"slug": "feedstock-delivery-mass",
"name": "Mass of Feedstock Delivery",
"value_type": "number",
"unit": "U.S. ton"
},
{
"slug": "feedstock-delivery-distance",
"name": "Distance of Feedstock Delivery",
"value_type": "number",
"unit": "mile"
},
{
"slug": "feedstock-delivery-feedstock-type",
"name": "Feedstock Type",
"value_type": "string",
"unit": null
},
{
"slug": "feedstock-delivery-certification",
"name": "Feedstock Certification",
"value_type": "string",
"unit": null
},
{
"slug": "feedstock-delivery-is_processed",
"name": "Feedstock is Processed",
"value_type": "boolean",
"unit": null
}
]
},
{
"id": 2,
"slug": "co2-injection",
"name": "CO2 Injection",
"created_at": "2025-02-03T14:19:11.787Z",
"updated_at": "2025-02-03T14:19:11.787Z",
"data_point_types": [
{
"slug": "co2-injection-daily-mass",
"name": "Total Daily injected mass",
"value_type": "number",
"unit": "t"
},
{
"slug": "co2-injection-total-mass",
"name": "Total CO2 injected to date",
"value_type": "number",
"unit": "t"
},
{
"slug": "co2-injection-mass-flow-rate",
"name": "Mass flow rate of CO2 injected",
"value_type": "number",
"unit": "lb/min"
}
]
}
],
"info": {
"items": 2,
"page_size": 10,
"total_items": 2,
"current_page": 1,
"next_page": null,
"previous_page": null,
"total_pages": 1,
"sort": [],
"filter": []
}
}