Skip to main content
GET
/
assets
List assets
curl --request GET \
  --url https://app.gomangrove.com/api/v1/assets \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "id": "asset_abc123def456",
      "friendly_id": "asset_abc123def456",
      "name": "Kiln Alpha",
      "health_status": null,
      "location_id": "loc_xyz789",
      "project_id": "prj_abc123",
      "lat": 37.3875,
      "long": -121.9635,
      "custom_field_values": {
        "serial": "KILN-001",
        "status": "Registered"
      },
      "created_at": "2026-01-15T10:00:00.000Z",
      "updated_at": "2026-01-15T10:00:00.000Z"
    }
  ],
  "info": {
    "items": 1,
    "page_size": 20,
    "total_items": 1,
    "current_page": 1,
    "next_page": null,
    "previous_page": null,
    "total_pages": 1,
    "sort": [],
    "filter": []
  }
}

Authorizations

Authorization
string
header
required

Query Parameters

page
integer<int32>
default:1
page_size
integer<int32>
default:20
sort
string

Comma-separated list of fields to sort by. Prefix with - for descending. Available fields: name, created_at, updated_at

Example:

"-created_at"

filter[name][contains]
string

Filter by name (case-insensitive partial match)

filter[project_id][eq]
string

Filter by project friendly ID (e.g., prj_abc123). Unknown IDs return an empty page.

filter[custom_field_values][{key}]
string

Filter by a custom field value, where {key} is a custom field definition key (e.g., filter[custom_field_values][serial]=SN-001). Multiple keys combine with AND. Unknown keys return 422.

Response

200

data
object[]
info
object