> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mangrovesystems.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List assets

> Returns all assets for the account. Assets are account-scoped — use `filter[project_id][eq]` to narrow to a single project.



## OpenAPI

````yaml GET /assets
openapi: 3.1.0
info:
  title: Mangrove - API
  version: 1.1.0
servers:
  - url: https://app.gomangrove.com/api/v1
security:
  - sec0: []
paths:
  /assets:
    get:
      summary: List assets
      description: >-
        Returns all assets for the account. Assets are account-scoped — use
        `filter[project_id][eq]` to narrow to a single project.
      operationId: list-assets
      parameters:
        - name: page
          in: query
          schema:
            type: integer
            format: int32
            default: 1
        - name: page_size
          in: query
          schema:
            type: integer
            format: int32
            default: 20
        - name: sort
          in: query
          description: >-
            Comma-separated list of fields to sort by. Prefix with - for
            descending. Available fields: name, created_at, updated_at
          schema:
            type: string
            example: '-created_at'
        - name: filter[name][contains]
          in: query
          description: Filter by name (case-insensitive partial match)
          schema:
            type: string
        - name: filter[project_id][eq]
          in: query
          description: >-
            Filter by project friendly ID (e.g., prj_abc123). Unknown IDs return
            an empty page.
          schema:
            type: string
        - name: filter[custom_field_values][{key}]
          in: query
          description: >-
            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.
          schema:
            type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value:
                    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: []
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: Asset friendly ID (e.g., asset_abc123def456)
                        friendly_id:
                          type: string
                        name:
                          type: string
                        health_status:
                          type: string
                          nullable: true
                        location_id:
                          type: string
                          nullable: true
                          description: Friendly ID of the parent location, if any
                        project_id:
                          type: string
                          nullable: true
                          description: >-
                            Friendly ID of the project the asset belongs to, if
                            any
                        lat:
                          type: number
                          nullable: true
                        long:
                          type: number
                          nullable: true
                        custom_field_values:
                          type: object
                          description: >-
                            Custom field values keyed by custom field definition
                            key
                        created_at:
                          type: string
                          format: date-time
                        updated_at:
                          type: string
                          format: date-time
                  info:
                    type: object
                    properties:
                      items:
                        type: integer
                      page_size:
                        type: integer
                      total_items:
                        type: integer
                      current_page:
                        type: integer
                      next_page:
                        type: integer
                        nullable: true
                      previous_page:
                        type: integer
                        nullable: true
                      total_pages:
                        type: integer
        '422':
          description: '422'
          content:
            application/json:
              examples:
                Result:
                  value:
                    status: error
                    statusCode: 422
                    errors:
                      - message: 'Unknown custom_field_values key(s): serial'
      deprecated: false
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: Authorization
      x-bearer-format: ''

````