# List metaobjects

> Retrieve a paginated list of metaobjects.

`GET /rest/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/).

## Headers

| Name                         | Type     | Required | Description                                                                                                                                      |
| ---------------------------- | -------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| `X-Flowkiwi-Organization-Id` | `string` | Yes      | The organization the request acts as. Determines the identity, permissions and ownership applied when reading or modifying data on the instance. |

## 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 `X-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 |
| ------------------ | -------------- | -------- | ----------- |
| `hydra:totalItems` | `integer`      | -        |             |
| `hydra:search`     | `object`       | -        |             |
| `hydra:view`       | `object`       | -        |             |
| `hydra: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/rest/api/metaobjects' \
  -H 'Authorization: Bearer {token}' \
  -H 'X-Flowkiwi-Organization-Id: <org_id>' \
  -H 'Accept: application/ld+json'
```

### Example response

```json
{
  "@context": "/contexts/Metaobject",
  "@id": "/rest/api/metaobjects",
  "@type": "hydra:Collection",
  "hydra:totalItems": 1,
  "hydra:member": [
    {
      "@context": "/contexts/Metaobject",
      "@id": "/rest/api/metaobjects/019afc10-4d5e-7f60-9b71-3c4d5e6f7081",
      "@type": "Metaobject",
      "id": "019afc10-4d5e-7f60-9b71-3c4d5e6f7081",
      "definition": "/rest/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": "/rest/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": "/rest/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"
    }
  ]
}
```
