---
title: "Retrieve options for a metaproperty"
url: "https://earlyaccess.developers.bynder.com/apis/metaproperty-options-1/versions/9b6f896a-c5dd-4f1a-a8e4-591e5ef4f1db/paths/api-v4-metaproperties-id--options/get"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/metaproperty-options-1/versions/9b6f896a-c5dd-4f1a-a8e4-591e5ef4f1db.md

# Retrieve options for a metaproperty

`GET` `/api/v4/metaproperties/{id}/options`

## Path parameters

- `id` (string, required)

## Query parameters

- `name` (string, optional)
- `limit` (integer, optional)
- `page` (integer, optional)
- `externalReference` (string, optional)

## Responses

- `200` - Successful response
- `400` - Invalid metaproperty ID

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Metaproperty options
  version: "1.0"
servers:
  - url: https://{your-bynder-domain}/
paths:
  /api/v4/metaproperties/{id}/options:
    get:
      parameters:
        - in: path
          name: id
          required: true
          schema:
            example: 00000000-0000-0000-0000000000000000
            type: string
        - in: query
          name: name
          required: false
          schema:
            example: Amsterdam
            type: string
        - in: query
          name: limit
          required: false
          schema:
            default: 50
            example: 250
            maximum: 1000
            type: integer
        - in: query
          name: page
          required: false
          schema:
            default: 1
            example: 1
            type: integer
        - in: query
          name: externalReference
          required: false
          schema:
            type: string
      responses:
        "200":
          content:
            application/json:
              examples:
                example1:
                  value:
                    - active: 1
                      date: 2017-02-15T14:54:58+00:00
                      displayLabel: Yellow
                      id: 00000000-0000-0000-0000000000000000
                      label: Yellow
                      labels:
                        en_US: Yellow
                        nl_NL: Geel
                      name: yellow
                    - active: 1
                      date: 2017-02-15T15:50:55+00:00
                      displayLabel: Red
                      id: 00000000-0000-0000-0000000000000000
                      label: Red
                      labels:
                        en_US: Red
                        nl_NL: Rood
                      name: red
              schema:
                items:
                  properties:
                    active:
                      example: 1
                      type: integer
                    date:
                      example: 2017-02-15T14:54:58+00:00
                      format: date-time
                      type: string
                    displayLabel:
                      example: Yellow
                      type: string
                    id:
                      example: 00000000-0000-0000-0000000000000000
                      type: string
                    label:
                      example: Yellow
                      type: string
                    labels:
                      properties:
                        en_US:
                          example: Yellow
                          type: string
                        nl_NL:
                          example: Geel
                          type: string
                      type: object
                    name:
                      example: yellow
                      type: string
                  type: object
                type: array
          description: Successful response
        "400":
          content:
            application/json:
              examples:
                invalidId:
                  value:
                    message: Invalid metaproperty ID
                    statuscode: "400"
              schema:
                properties:
                  message:
                    example: Invalid metaproperty ID
                    type: string
                  statuscode:
                    example: "400"
                    type: string
                type: object
          description: Invalid metaproperty ID
      summary: Retrieve options for a metaproperty
      tags:
        - Options - Old API (Please use new API if possible)
security:
  - OAuth2:
      - METAPROPERTYMANAGEMENT
      - METAMANAGEMENT
  - permanentToken:
      - METAPROPERTYMANAGEMENT
      - METAMANAGEMENT
components:
  securitySchemes:
    OAuth2:
      flows:
        authorizationCode:
          authorizationUrl: https://{your-auth-url}
          scopes:
            METAMANAGEMENT: ""
            METAPROPERTYMANAGEMENT: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
        clientCredentials:
          scopes:
            METAMANAGEMENT: ""
            METAPROPERTYMANAGEMENT: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
      type: oauth2
    permanentToken:
      in: header
      name: Authorization
      type: apiKey
```
