---
title: "Retrieve specific asset report"
url: "https://earlyaccess.developers.bynder.com/apis/analytics-api/versions/c50f3280-b9e2-4302-9d7f-6584d3ee7b84/paths/v7-analytics-api-v1-report-asset-assetId/get"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/analytics-api/versions/c50f3280-b9e2-4302-9d7f-6584d3ee7b84.md

# Retrieve specific asset report

`GET` `/v7/analytics/api/v1/report/asset/{assetId}`

This endpoint allows you to retrieve a human readable report for a specific asset in the DAM. The report will include all the metadata of the asset.

## Path parameters

- `assetId` (string, required) - Asset id.

## Responses

- `200` - Successful response

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Analytics API
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}
paths:
  /v7/analytics/api/v1/report/asset/{assetId}:
    get:
      description: This endpoint allows you to retrieve a human readable report for a
        specific asset in the DAM. The report will include all the metadata of
        the asset.
      parameters:
        - description: Asset id.
          in: path
          name: assetId
          required: true
          schema:
            example: CD729A10-9101-47C7-9D14FA2E14CF28D9
            type: string
      responses:
        "200":
          content:
            application/json:
              examples:
                example-1:
                  summary: Example response
                  value: |
                    {
                      "assetId": "CD729A10-9101-47C7-9D14FA2E14CF28D9",
                      "name": "Asset 2",
                      "description": "Asset 2 description",
                      "isArchived": false,
                      "type": "image",
                      "audit": "ACCEPTED",
                      "copyright": "",
                      "isLimited": false,
                      "datePublished": "2019-03-31T23:55:21.000+00:00",
                      "isRemoved": false,
                      "idHash": "792e23855f02cdcb",
                      "phash": "56033317620",
                      "userCreated": "4BE80C1E-D8FF-4104-8CF774F06B1E60CE",
                      "dateCreated": "2019-03-31T23:59:40.000+00:00",
                      "userModified": "00000000-0000-0000-0000000000000000",
                      "dateModified": "2020-12-04T21:18:27.000+00:00",
                      "isWatermarked": false,
                      "isPublic": false,
                      "metaproperties": {
                        "metaproperty_1": "option3",
                        "metaproperty_2": "option2, option1",
                        "metaproperty_3": ""
                      }
                    }
              schema:
                properties:
                  assetId:
                    example: CD729A10-9101-47C7-9D14FA2E14CF28D9
                    type: string
                  audit:
                    example: ACCEPTED
                    type: string
                  copyright:
                    example: ""
                    type: string
                  dateCreated:
                    example: 2019-03-31T23:59:40.000+00:00
                    format: date-time
                    type: string
                  dateModified:
                    example: 2020-12-04T21:18:27.000+00:00
                    format: date-time
                    type: string
                  datePublished:
                    example: 2019-03-31T23:55:21.000+00:00
                    format: date-time
                    type: string
                  description:
                    example: Asset 2 description
                    type: string
                  idHash:
                    example: 792e23855f02cdcb
                    type: string
                  isArchived:
                    example: false
                    type: boolean
                  isLimited:
                    example: false
                    type: boolean
                  isPublic:
                    example: false
                    type: boolean
                  isRemoved:
                    example: false
                    type: boolean
                  isWatermarked:
                    example: false
                    type: boolean
                  metaproperties:
                    additionalProperties:
                      type: string
                    example:
                      metaproperty_1: option3
                      metaproperty_2: option2, option1
                      metaproperty_3: ""
                    type: object
                  name:
                    example: Asset 2
                    type: string
                  phash:
                    example: "56033317620"
                    type: string
                  type:
                    example: image
                    type: string
                  userCreated:
                    example: 4BE80C1E-D8FF-4104-8CF774F06B1E60CE
                    type: string
                  userModified:
                    example: 00000000-0000-0000-0000000000000000
                    type: string
                type: object
          description: Successful response
      summary: Retrieve specific asset report
      tags:
        - Reporting
security:
  - permanentToken:
      - analytics.api:read
  - oauth2:
      - analytics.api:read
components:
  securitySchemes:
    permanentToken:
      in: header
      name: Authorization
      type: apiKey
```
