---
title: "Retrieve the assets of a specific collection"
url: "https://earlyaccess.developers.bynder.com/apis/collections-api-1/versions/fa75179f-d3db-46c2-8693-3128e9d35db4/paths/api-v4-collections-id--media/get"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/collections-api-1/versions/fa75179f-d3db-46c2-8693-3128e9d35db4.md

# Retrieve the assets of a specific collection

`GET` `/api/v4/collections/{id}/media`

Retrieve the assets of a specific collection by ID.

## Path parameters

- `id` (string, required)

## Responses

- `200` - A list of asset IDs.
- `404` - Collection not found.

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Collections API
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}/
paths:
  /api/v4/collections/{id}/media:
    get:
      description: Retrieve the assets of a specific collection by ID.
      parameters:
        - in: path
          name: id
          required: true
          schema:
            example: 00000000-0000-0000-0000000000000000
            type: string
      responses:
        "200":
          content:
            application/json:
              examples:
                example1:
                  value:
                    - 00000000-0000-0000-0000000000000000
                    - 00000000-0000-0000-0000000000000001
                    - 00000000-0000-0000-0000000000000002
              schema:
                items:
                  example: 00000000-0000-0000-0000000000000000
                  type: string
                type: array
          description: A list of asset IDs.
        "404":
          content:
            application/json:
              schema:
                properties:
                  message:
                    example: Collection not found
                    type: string
                  statuscode:
                    example: 404
                    type: integer
                type: object
          description: Collection not found.
      security:
        - OAuth2: []
        - permanentToken: []
      summary: Retrieve the assets of a specific collection
      tags:
        - Collections assets
security:
  - OAuth2: []
  - permanentToken: []
components:
  securitySchemes:
    OAuth2:
      flows:
        authorizationCode:
          authorizationUrl: https://{your-auth-url}
          scopes:
            COLLECTIONS: ""
            INBOXPUBLIC: To retrieve collections other users shared/received
            OUTBOXPUBLIC: To retrieve collections other users shared/received
            PUBLICCOLLECTIONS: To retrieve collections other users created
            PUBLISHCOLLECTIONS: ""
            SHARECOLLECTION: ""
            SHARING: ""
            collection.public.view: To retrieve public collections
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
        clientCredentials:
          scopes:
            COLLECTIONS: ""
            INBOXPUBLIC: To retrieve collections other users shared/received
            OUTBOXPUBLIC: To retrieve collections other users shared/received
            PUBLICCOLLECTIONS: To retrieve collections other users created
            PUBLISHCOLLECTIONS: ""
            SHARECOLLECTION: ""
            SHARING: ""
            collection.public.view: To retrieve public collections
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
      type: oauth2
    permanentToken:
      in: header
      name: Authorization
      type: apiKey
```
