---
title: "Retrieve metaproperties"
url: "https://earlyaccess.developers.bynder.com/apis/product-layer-metaproperties-api-1/versions/2fb2c968-3ea1-4674-8bb7-a5babf8f5934/paths/api-pim-metaproperties/get"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/product-layer-metaproperties-api-1/versions/2fb2c968-3ea1-4674-8bb7-a5babf8f5934.md

# Retrieve metaproperties

`GET` `/api/pim/metaproperties`

Retrieve a list of metaproperties.

## Responses

- `200` - Successfully retrieved metaproperties

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Product Layer Metaproperties API
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}/
paths:
  /api/pim/metaproperties:
    get:
      description: Retrieve a list of metaproperties.
      responses:
        "200":
          content:
            application/json:
              schema:
                items:
                  example: 00000000-0000-0000-0000-000000000000
                  type: string
                type: array
          description: Successfully retrieved metaproperties
      security:
        - OAuth2:
            - metaproperty.view
        - permanentToken:
            - metaproperty.view
      summary: Retrieve metaproperties
      tags:
        - Metaproperties
security:
  - OAuth2:
      - metaproperty.view
  - permanentToken:
      - metaproperty.view
components:
  securitySchemes:
    OAuth2:
      flows:
        authorizationCode:
          authorizationUrl: https://{your-auth-url}
          scopes:
            METAPROPERTYMANAGEMENT: ""
            metaproperty.view: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
        clientCredentials:
          scopes:
            METAPROPERTYMANAGEMENT: ""
            metaproperty.view: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
      type: oauth2
    permanentToken:
      in: header
      name: Authorization
      type: apiKey
```
