# List metaobjects

> Retrieve a paginated list of metaobjects.
{/* generated:versioned-pages - edit _pm-authored, not this file */}

`GET /api/metaobjects`

Retrieves the collection of Metaobject resources.

Returns a paginated collection of metaobjects across all types in the current organization. To list only the records of one type, use [List metaobjects by type](/api/product-management/metaobjects/list-by-type/).

## Query parameters

| Name            | Type       | Required | Description                                                                                                                                                                                                                                                                                          |
| --------------- | ---------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `page`          | `integer`  | -        | The collection page number                                                                                                                                                                                                                                                                           |
| `itemsPerPage`  | `integer`  | -        | The number of items per page                                                                                                                                                                                                                                                                         |
| `definition`    | `string`   | -        |                                                                                                                                                                                                                                                                                                      |
| `definition[]`  | `string[]` | -        |                                                                                                                                                                                                                                                                                                      |
| `status`        | `string`   | -        |                                                                                                                                                                                                                                                                                                      |
| `status[]`      | `string[]` | -        |                                                                                                                                                                                                                                                                                                      |
| `handle`        | `string`   | -        |                                                                                                                                                                                                                                                                                                      |
| `handle[]`      | `string[]` | -        |                                                                                                                                                                                                                                                                                                      |
| `fields[<key>]` | `object`   | -        | Filter entries by field value. Pairs are combined with AND; exact match against the translated value for the locale provided in `Flowkiwi-Locale`. The filter is silently skipped when the header is missing. Example: ?fields[name]=Jane%20Doe. For list-typed fields, pass the JSON-encoded array. |

## Response

**200** - Metaobject collection

| Property     | Type           | Required | Description |
| ------------ | -------------- | -------- | ----------- |
| `totalItems` | `integer`      | -        |             |
| `search`     | `object`       | -        |             |
| `view`       | `object`       | -        |             |
| `member`     | `Metaobject[]` | Yes      |             |

## Errors

**403** - Access denied. The caller is missing one or more identity permissions required for this operation.

| Property             | Type       | Required | Description                                                                                                                                |
| -------------------- | ---------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
| `@context`           | `object`   | -        |                                                                                                                                            |
| `@id`                | `string`   | Yes      |                                                                                                                                            |
| `@type`              | `string`   | Yes      |                                                                                                                                            |
| `type`               | `string`   | -        |                                                                                                                                            |
| `title`              | `string`   | -        |                                                                                                                                            |
| `status`             | `integer`  | -        |                                                                                                                                            |
| `detail`             | `string`   | -        |                                                                                                                                            |
| `missingPermissions` | `string[]` | -        | Identity permissions that the caller is missing for this operation. Present only when the 403 is caused by a denied identity:* permission. |

## Examples

### Example request

```bash
curl -X GET 'https://<tenant>.product-management.flowkiwi.net/api/metaobjects' \
  -H 'Authorization: Bearer {access_token}' \
  -H 'Flowkiwi-Api-Version: 2026-07' \
  -H 'Accept: application/ld+json'
```

### Example response

```json
{
  "@context": "/api/contexts/Metaobject",
  "@id": "/api/metaobjects",
  "@type": "Collection",
  "totalItems": 1,
  "member": [
    {
      "@context": "/api/contexts/Metaobject",
      "@id": "/api/metaobjects/019afc10-4d5e-7f60-9b71-3c4d5e6f7081",
      "@type": "Metaobject",
      "id": "019afc10-4d5e-7f60-9b71-3c4d5e6f7081",
      "definition": "/api/metaobject_definitions/019afc01-1a2b-7c3d-8e4f-0a1b2c3d4e5f",
      "handle": "mens-shoes-eu",
      "status": "ACTIVE",
      "displayName": "EU men's shoes",
      "fields": [
        {
          "key": "title",
          "value": "EU men's shoes",
          "type": "/api/metafield_definition_types/single_line_text_field",
          "metaobject": []
        },
        {
          "key": "body",
          "value": "EU 40 = 25.5 cm, EU 41 = 26.2 cm, EU 42 = 27 cm",
          "type": "/api/metafield_definition_types/multi_line_text_field",
          "metaobject": []
        }
      ],
      "createdAt": "2026-01-15T09:30:00+00:00",
      "updatedAt": "2026-02-03T14:45:12+00:00"
    }
  ]
}
```
