Bynder Analytics API

The Analytics module: asset views and downloads, search usage, user usage, collection usage, reporting and historical data. The largest single Bynder definition, cursor-paged rather than page-and-limit.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/bynder-analytics-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

bynder-analytics-openapi.json Raw ↑
{"openapi":"3.1.0","info":{"title":"Analytics API","version":"1.0.0"},"tags":[{"name":"Asset Usage V2","description":"These endpoints return information related to the specific event. You can enrich these events with specific data about the asset or the user by making use of the [Analytics Reporting tool](#reference/analytics/reporting) or the [Users API endpoints](#reference/users).\nThis new version resolves pagination performance issues.\n"},{"name":"Asset Usage V1","description":"These endpoints return information related to the specific event. You can enrich these events with specific data about the asset or the user by making use of the [Analytics Reporting tool](#reference/analytics/reporting) or the [Users API endpoints](#reference/users).\n"},{"name":"Search Usage","description":"These endpoints return information related to the specific event. You can enrich these events with specific data about the asset or the user by making use of the [Assets API endpoints](#reference/assets) or the [Users API endpoints](#reference/users).\n"},{"name":"User Usage","description":"These endpoints return information related to the specific event. You can enrich these events with specific data about the asset or the user by making use of the [Assets API endpoints](#reference/assets) or the [Users API endpoints](#reference/users).\n"},{"name":"Collection Usage","description":"These endpoints return information related to the specific event. You can enrich these events with specific data about the collection or the user by making use of the [Collections API endpoints](#reference/collections) or the [Users API endpoints](#reference/users).\n"},{"name":"Reporting","description":"These endpoints provide reporting capabilities for assets of the DAM, making it easier to build your own customised reports.\n"},{"name":"Historical Data","description":"This endpoint provides historical Analytics data beyond the 12 month retention period that applies to the Analytics API endpoints. **Note:** This data isn't available by default. Please, contact your CSM if you require access to it.\n"}],"servers":[{"url":"https://{your-bynder-domain}"}],"security":[{"permanentToken":["analytics.api:read"]},{"oauth2":["analytics.api:read"]}],"paths":{"/v7/analytics/api/v2/asset/views":{"get":{"summary":"Retrieve asset views","tags":["Asset Usage V2"],"parameters":[{"name":"limit","in":"query","description":"The maximum number of analytics events to retrieve. Allowed values are between 1 and 10000.","required":false,"schema":{"type":"integer","default":1000}},{"name":"cursor","in":"query","description":"Cursor mark returned in the response headers to be used for pagination purposes.","required":false,"schema":{"type":"integer","default":0}},{"name":"fromDateTime","in":"query","description":"Retrieve view events occurred after this date. ISO8601 format yyyy-mm-ddThh:mm[:ssZ] with optional seconds.","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"toDateTime","in":"query","description":"Set a date range together with the \"fromDateTime\" parameter. ISO8601 format yyyy-mm-ddThh:mm[:ssZ] with optional seconds.","required":false,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"Successful response","headers":{"Next-Cursor":{"description":"The next cursor value to send if you want to continue with your paginated request.","schema":{"type":"integer","example":1000}},"Next-Url":{"description":"The next URL path to query if you want to continue with your paginated request.","schema":{"type":"string","example":"/api/v1/asset/view?limit=1000&cursor=1000"}}},"content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"eventId":{"type":"string","example":"236280dd-b06e-44be-ae9f-85e2661510a1"},"eventType":{"type":"string","example":"AssetViewed"},"userId":{"type":"string","example":"1A84D758-2B3A-141F-8F07D71AA1F223BD"},"dateTime":{"type":"string","format":"date-time","example":"2021-11-15T10:07:57.781+00:00"},"assetId":{"type":"string","example":"CA510292-E39E-4B28-AB6444CDD2B1C5C0"}}}},"examples":{"example-1":{"summary":"Example response","value":"[\n  {\n    \"eventId\": \"236280dd-b06e-44be-ae9f-85e2661510a1\",\n    \"eventType\": \"AssetViewed\",\n    \"userId\": \"1A84D758-2B3A-141F-8F07D71AA1F223BD\",\n    \"dateTime\": \"2021-11-15T10:07:57.781+00:00\",\n    \"assetId\": \"CA510292-E39E-4B28-AB6444CDD2B1C5C0\"\n  },\n  {\n    \"eventId\": \"236280dd-b06e-44be-ae9f-85e2661510a2\",\n    \"eventType\": \"AssetViewed\",\n    \"userId\": \"1A84D758-2B3A-141F-8F07D71AA1F223BD\",\n    \"dateTime\": \"2021-11-16T07:13:46.781+00:00\",\n    \"assetId\": \"CA510292-E39E-4B28-AB6444CDD2B1C5C0\"\n  }\n]\n"}}}}}}}},"/v7/analytics/api/v1/asset/view":{"get":{"summary":"Retrieve asset view events","tags":["Asset Usage V1"],"description":"This endpoint will be deprecated on July, 15th. Use the Asset Views V2 endpoint instead.","parameters":[{"name":"limit","in":"query","description":"The maximum number of analytics events to retrieve. Allowed values are between 1 and 10000.","required":false,"schema":{"type":"integer","default":1000}},{"name":"cursor","in":"query","description":"Cursor mark returned in the response headers to be used for pagination purposes.","required":false,"schema":{"type":"string","default":"MA"}},{"name":"fromDateTime","in":"query","description":"Retrieve view events occurred after this date. ISO8601 format yyyy-mm-ddThh:mm[:ssZ] with optional seconds.\n","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"toDateTime","in":"query","description":"Set a date range together with the \"fromDateTime\" parameter. ISO8601 format yyyy-mm-ddThh:mm[:ssZ] with optional seconds.\n","required":false,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"Successful response","headers":{"Next-Cursor":{"description":"The next cursor value to send if you want to continue with your paginated request.","schema":{"type":"string"}},"Next-Url":{"description":"The next url path to query if you want to continue with your paginated request.","schema":{"type":"string"}}},"content":{"application/json":{"examples":{"example-1":{"summary":"Example response","value":[{"id":"62de6d714e29485a81824fe3","eventType":"asset.view","userId":"1A84D758-2B3A-141F-8F07D71AA1F223BD","dateTime":"2021-11-15T10:07:57.781+00:00","assetId":"CA510292-E39E-4B28-AB6444CDD2B1C5C0","assetType":"image","assetName":"Product Insights","assetAudit":"ACCEPTED","fileName":"CA510292-E39E-4B28-AB6444CDD2B1C5C___Product Insights"},{"id":"62de6d714e29485a81824fe4","eventType":"asset.view","userId":"1A84D758-2B3A-141F-8F07D71AA1F223BD","dateTime":"2021-11-15T10:08:18.752+00:00","assetId":"C58ED8C6-6B09-4CD6-B71C32C6715834F1","assetType":"image","assetName":"Reporting Schedule Nov 2022","assetAudit":"ACCEPTED","fileName":"C58ED8C6-6B09-4CD6-B71C32C6715834F1___Reporting Schedule Nov 2022"}]}}},"text/csv":{"examples":{"example-1":{"summary":"Example CSV response","value":"id,eventType,userId,dateTime,assetId,assetType,assetName,assetAudit,fileName\n62de6d714e29485a81824fe3,asset.view,1A84D758-2B3A-141F-8F07D71AA1F223BD,1655823377864,CA510292-E39E-4B28-AB6444CDD2B1C5C0,image,Product Insights,ACCEPTED,CA510292-E39E-4B28-AB6444CDD2B1C5C___Product Insights\n62de6d714e29485a81824fe4,asset.view,1A84D758-2B3A-141F-8F07D71AA1F223BD,1655996103781,C58ED8C6-6B09-4CD6-B71C32C6715834F1,image,Reporting Schedule Nov 2022,ACCEPTED,C58ED8C6-6B09-4CD6-B71C32C6715834F1___Reporting Schedule Nov 2022\n"}}}}}}}},"/v7/analytics/api/v1/asset/download":{"get":{"summary":"Retrieve asset download events","tags":["Asset Usage V1"],"parameters":[{"name":"limit","in":"query","description":"The maximum number of analytics events to retrieve. Allowed values are between 1 and 10000.","required":false,"schema":{"type":"integer","default":1000}},{"name":"cursor","in":"query","description":"Cursor mark returned in the response headers to be used for pagination purposes.","required":false,"schema":{"type":"string","default":"MA"}},{"name":"fromDateTime","in":"query","description":"Retrieve download events occurred after this date. ISO8601 format yyyy-mm-ddThh:mm[:ssZ] with optional seconds.\n","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"toDateTime","in":"query","description":"Set a date range together with the \"fromDateTime\" parameter. ISO8601 format yyyy-mm-ddThh:mm[:ssZ] with optional seconds.\n","required":false,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"Successful response","headers":{"Next-Cursor":{"description":"The next cursor value to send if you want to continue with your paginated request.","schema":{"type":"string"}},"Next-Url":{"description":"The next url path to query if you want to continue with your paginated request.","schema":{"type":"string"}}},"content":{"application/json":{"examples":{"example-1":{"summary":"Example response","value":[{"id":"62de6d714e29485a81824fe3","eventType":"asset.download","userId":"1A84D758-2B3A-141F-8F07D71AA1F223BD","dateTime":"2021-11-15T10:07:57.781+00:00","assetId":"CA510292-E39E-4B28-AB6444CDD2B1C5C0","assetType":"image","assetName":"Product Insights","assetAudit":"ACCEPTED","fileName":"CA510292-E39E-4B28-AB6444CDD2B1C5C___Product Insights","mediaItemId":"69293464-7721-4062-9E05EFAF23FE70E7","mediaItemType":"original"},{"id":"62de6d714e29485a81824fe4","eventType":"asset.download","userId":"1A84D758-2B3A-141F-8F07D71AA1F223BD","dateTime":"2021-11-15T10:08:18.752+00:00","assetId":"C58ED8C6-6B09-4CD6-B71C32C6715834F1","assetType":"image","assetName":"Reporting Schedule Nov 2022","assetAudit":"ACCEPTED","fileName":"C58ED8C6-6B09-4CD6-B71C32C6715834F1___Reporting Schedule Nov 2022","mediaItemId":"69293464-7721-4062-9E05EFAF23FE70E7","mediaItemType":"web"}]}}},"text/csv":{"examples":{"example-1":{"summary":"Example CSV response","value":"id,eventType,userId,dateTime,assetId,assetType,assetName,assetAudit,fileName,mediaItemId,mediaItemType\n62de6d714e29485a81824fe3,asset.download,1A84D758-2B3A-141F-8F07D71AA1F223BD,1655823377864,CA510292-E39E-4B28-AB6444CDD2B1C5C0,image,Product Insights,ACCEPTED,CA510292-E39E-4B28-AB6444CDD2B1C5C___Product Insights,69293464-7721-4062-9E05EFAF23FE70E7,original\n62de6d714e29485a81824fe4,asset.download,1A84D758-2B3A-141F-8F07D71AA1F223BD,1655996103781,C58ED8C6-6B09-4CD6-B71C32C6715834F1,image,Reporting Schedule Nov 2022,ACCEPTED,C58ED8C6-6B09-4CD6-B71C32C6715834F1___Reporting Schedule Nov 2022,69293464-7721-4062-9E05EFAF23FE70E7,web\n"}}}}}}}},"/v7/analytics/api/v1/asset/v2/download":{"get":{"summary":"Retrieve asset download events","tags":["Asset Usage V1"],"description":"This endpoint only offers data from 2023-11-01. Use the Asset Download endpoint for previous data.","parameters":[{"name":"limit","in":"query","description":"The maximum number of analytics events to retrieve. Allowed values are between 1 and 10000.","required":false,"schema":{"type":"integer","default":1000,"example":100}},{"name":"cursor","in":"query","description":"Cursor mark returned in the response headers to be used for pagination purposes.","required":false,"schema":{"type":"string","default":"MA","example":"MTAwMA"}},{"name":"fromDateTime","in":"query","description":"Retrieve download events occurred after this date. ISO8601 format yyyy-mm-ddThh:mm[:ssZ] with optional seconds.\n","required":false,"schema":{"type":"string","format":"date-time","example":"2022-01-01T01:00"}},{"name":"toDateTime","in":"query","description":"Set a date range together with the \"fromDateTime\" parameter. ISO8601 format yyyy-mm-ddThh:mm[:ssZ] with optional seconds.\n","required":false,"schema":{"type":"string","format":"date-time","example":"2022-06-01T01:00"}}],"responses":{"200":{"description":"Successful response","headers":{"Next-Cursor":{"description":"The next cursor value to send if you want to continue with your paginated request.","schema":{"type":"string","example":"MTAwMA"}},"Next-Url":{"description":"The next url path to query if you want to continue with your paginated request.","schema":{"type":"string","example":"/api/v1/asset/v2/download?limit=1000&cursor=MTAwMA"}}},"content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"eventId":{"type":"string","description":"Id of the event","example":"1408aec2-3114-43dd-be20-ffb1246a5231"},"eventType":{"type":"string","description":"Type of event","example":"AssetDownloadRequested"},"dateTime":{"type":"string","format":"date-time","description":"Date and time when the event occurred","example":"2021-11-15T10:07:57.781Z"},"userId":{"type":"string","description":"Id of the user that generated the event","example":"1A84D758-2B3A-141F-8F07D71AA1F223BD"},"assetId":{"type":"string","description":"Id of the asset","example":"CA510292-E39E-4B28-AB6444CDD2B1C5C0"},"downloadReasons":{"type":"array","items":{"type":"string"},"description":"Reasons given on why the asset was downloaded","example":["reason1","reason2"]}}}},"examples":{"example-1":{"summary":"Example response","value":"[\n  {\n    \"eventId\": \"1408aec2-3114-43dd-be20-ffb1246a5231\",\n    \"eventType\": \"AssetDownloadRequested\",\n    \"dateTime\": \"2021-11-15T10:07:57.781+00:00\",\n    \"userId\": \"1A84D758-2B3A-141F-8F07D71AA1F223BD\",\n    \"assetId\": \"CA510292-E39E-4B28-AB6444CDD2B1C5C0\",\n    \"downloadReasons\": [\n      \"reason1\",\n      \"reason2\"\n    ]\n  },\n  {\n    \"eventId\": \"5908aec2-3114-43dd-be20-ffb1246a5231\",\n    \"eventType\": \"AssetDownloadRequested\",\n    \"dateTime\": \"2021-11-15T10:07:57.781+00:00\",\n    \"userId\": \"1A84D758-2B3A-141F-8F07D71AA1F223BD\",\n    \"assetId\": \"C58ED8C6-6B09-4CD6-B71C32C6715834F\",\n    \"downloadReasons\": [\n      \"reason2\"\n    ]\n  }\n]\n"}}}}}}}},"/v7/analytics/api/v1/asset/create":{"get":{"summary":"Retrieve asset creation events","description":"Retrieve asset creation events within a specified date range.","tags":["Asset Usage V1"],"parameters":[{"name":"limit","in":"query","description":"The maximum number of analytics events to retrieve. Allowed values are between 1 and 10000.","required":false,"schema":{"type":"integer","default":1000,"example":100}},{"name":"cursor","in":"query","description":"Cursor mark returned in the response headers to be used for pagination purposes.","required":false,"schema":{"type":"string","default":"MA","example":"MTAwMA"}},{"name":"fromDateTime","in":"query","description":"Retrieve create events occurred after this date.","required":false,"schema":{"type":"string","format":"date-time","example":"2022-01-01T01:00:00.000Z"}},{"name":"toDateTime","in":"query","description":"Set a date range together with the \"fromDateTime\" parameter.","required":false,"schema":{"type":"string","format":"date-time","example":"2022-06-01T01:00:00.000Z"}}],"responses":{"200":{"description":"Successful response","headers":{"Next-Cursor":{"description":"The next cursor value to send if you want to continue with your paginated request.","schema":{"type":"string","example":"MTAwMA"}},"Next-Url":{"description":"The next URL path to query if you want to continue with your paginated request.","schema":{"type":"string","example":"/api/v1/asset/create?limit=1000&cursor=MTAwMA"}}},"content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","example":"62de6d714e29485a81824fe3"},"eventType":{"type":"string","example":"asset.create"},"userId":{"type":"string","example":"1A84D758-2B3A-141F-8F07D71AA1F223BD"},"dateTime":{"type":"string","format":"date-time","example":"2021-11-15T10:07:57.781Z"},"assetId":{"type":"string","example":"CA510292-E39E-4B28-AB6444CDD2B1C5C0"},"assetType":{"type":"string","example":"image"},"assetName":{"type":"string","example":"Product Insights"},"assetAudit":{"type":"string","example":"ACCEPTED"},"fileName":{"type":"string","example":"CA510292-E39E-4B28-AB6444CDD2B1C5C___Product Insights"}}}},"examples":{"example-1":{"summary":"Example response","value":"[\n  {\n    \"id\": \"62de6d714e29485a81824fe3\",\n    \"eventType\": \"asset.create\",\n    \"userId\": \"1A84D758-2B3A-141F-8F07D71AA1F223BD\",\n    \"dateTime\": \"2021-11-15T10:07:57.781+00:00\",\n    \"assetId\": \"CA510292-E39E-4B28-AB6444CDD2B1C5C0\",\n    \"assetType\": \"image\",\n    \"assetName\": \"Product Insights\",\n    \"assetAudit\": \"ACCEPTED\",\n    \"fileName\": \"CA510292-E39E-4B28-AB6444CDD2B1C5C___Product Insights\"\n  },\n  {\n    \"id\": \"62de6d714e29485a81824fe4\",\n    \"eventType\": \"asset.create\",\n    \"userId\": \"1A84D758-2B3A-141F-8F07D71AA1F223BD\",\n    \"dateTime\": \"2021-11-15T10:08:18.752+00:00\",\n    \"assetId\": \"C58ED8C6-6B09-4CD6-B71C32C6715834F1\",\n    \"assetType\": \"image\",\n    \"assetName\": \"Reporting Schedule Nov 2022\",\n    \"assetAudit\": \"ACCEPTED\",\n    \"fileName\": \"C58ED8C6-6B09-4CD6-B71C32C6715834F1___Reporting Schedule Nov 2022\"\n  }\n]\n"}}}}}}}},"/v7/analytics/api/v1/asset/archive":{"get":{"summary":"Retrieve asset archive events","description":"Retrieve archive events for assets within a specified date range.","tags":["Asset Usage V1"],"parameters":[{"name":"limit","in":"query","description":"The maximum number of analytics events to retrieve. Allowed values are between 1 and 10000.","required":false,"schema":{"type":"integer","default":1000,"example":100}},{"name":"cursor","in":"query","description":"Cursor mark returned in the response headers to be used for pagination purposes.","required":false,"schema":{"type":"string","default":"MA","example":"MTAwMA"}},{"name":"fromDateTime","in":"query","description":"Retrieve archive events occurred after this date.","required":false,"schema":{"type":"string","format":"date-time","example":"2022-01-01T01:00:00.000Z"}},{"name":"toDateTime","in":"query","description":"Set a date range together with the \"fromDateTime\" parameter.","required":false,"schema":{"type":"string","format":"date-time","example":"2022-06-01T01:00:00.000Z"}}],"responses":{"200":{"description":"Successful response","headers":{"Next-Cursor":{"description":"The next cursor value to send if you want to continue with your paginated request.","schema":{"type":"string","example":"MTAwMA"}},"Next-Url":{"description":"The next URL path to query if you want to continue with your paginated request.","schema":{"type":"string","example":"/api/v1/asset/archive?limit=1000&cursor=MTAwMA"}}},"content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","example":"62de6d714e29485a81824fe3"},"eventType":{"type":"string","example":"asset.archive"},"userId":{"type":"string","example":"1A84D758-2B3A-141F-8F07D71AA1F223BD"},"dateTime":{"type":"string","format":"date-time","example":"2021-11-15T10:07:57.781Z"},"assetId":{"type":"string","example":"CA510292-E39E-4B28-AB6444CDD2B1C5C0"},"assetType":{"type":"string","example":"image"},"assetName":{"type":"string","example":"Product Insights"},"assetAudit":{"type":"string","example":"ACCEPTED"},"fileName":{"type":"string","example":"CA510292-E39E-4B28-AB6444CDD2B1C5C___Product Insights"}}}},"examples":{"example-1":{"summary":"Example response","value":"[\n  {\n    \"id\": \"62de6d714e29485a81824fe3\",\n    \"eventType\": \"asset.archive\",\n    \"userId\": \"1A84D758-2B3A-141F-8F07D71AA1F223BD\",\n    \"dateTime\": \"2021-11-15T10:07:57.781+00:00\",\n    \"assetId\": \"CA510292-E39E-4B28-AB6444CDD2B1C5C0\",\n    \"assetType\": \"image\",\n    \"assetName\": \"Product Insights\",\n    \"assetAudit\": \"ACCEPTED\",\n    \"fileName\": \"CA510292-E39E-4B28-AB6444CDD2B1C5C___Product Insights\"\n  },\n  {\n    \"id\": \"62de6d714e29485a81824fe4\",\n    \"eventType\": \"asset.archive\",\n    \"userId\": \"1A84D758-2B3A-141F-8F07D71AA1F223BD\",\n    \"dateTime\": \"2021-11-15T10:08:18.752+00:00\",\n    \"assetId\": \"C58ED8C6-6B09-4CD6-B71C32C6715834F1\",\n    \"assetType\": \"image\",\n    \"assetName\": \"Reporting Schedule Nov 2022\",\n    \"assetAudit\": \"ACCEPTED\",\n    \"fileName\": \"C58ED8C6-6B09-4CD6-B71C32C6715834F1___Reporting Schedule Nov 2022\"\n  }\n]\n"}}}}}}}},"/v7/analytics/api/v1/asset/remove":{"get":{"summary":"Retrieve removed asset events","description":"Retrieve analytics events for removed assets.","tags":["Asset Usage V1"],"parameters":[{"name":"limit","in":"query","description":"The maximum number of analytics events to retrieve. Allowed values are between 1 and 10000.","required":false,"schema":{"type":"integer","default":1000,"example":100}},{"name":"cursor","in":"query","description":"Cursor mark returned in the response headers to be used for pagination purposes.","required":false,"schema":{"type":"string","default":"MA","example":"MTAwMA"}},{"name":"fromDateTime","in":"query","description":"Retrieve remove events occurred after this date. ISO8601 format yyyy-mm-ddThh:mm[:ssZ] with optional seconds.","required":false,"schema":{"type":"string","format":"date-time","example":"2022-01-01T01:00:00.000Z"}},{"name":"toDateTime","in":"query","description":"Set a date range together with the \"fromDateTime\" parameter. ISO8601 format yyyy-mm-ddThh:mm[:ssZ] with optional seconds.","required":false,"schema":{"type":"string","format":"date-time","example":"2022-06-01T01:00:00.000Z"}}],"responses":{"200":{"description":"Successful response","headers":{"Next-Cursor":{"description":"The next cursor value to send if you want to continue with your paginated request.","schema":{"type":"string","example":"MTAwMA"}},"Next-Url":{"description":"The next URL path to query if you want to continue with your paginated request.","schema":{"type":"string","example":"/api/v1/asset/remove?limit=1000&cursor=MTAwMA"}}},"content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","example":"62de6d714e29485a81824fe3"},"eventType":{"type":"string","example":"asset.remove"},"userId":{"type":"string","example":"1A84D758-2B3A-141F-8F07D71AA1F223BD"},"dateTime":{"type":"string","format":"date-time","example":"2021-11-15T10:07:57.781Z"},"assetId":{"type":"string","example":"CA510292-E39E-4B28-AB6444CDD2B1C5C0"},"assetType":{"type":"string","example":"image"},"assetName":{"type":"string","example":"Product Insights"},"assetAudit":{"type":"string","example":"ACCEPTED"},"fileName":{"type":"string","example":"CA510292-E39E-4B28-AB6444CDD2B1C5C___Product Insights"}}}},"examples":{"example-1":{"summary":"Example response","value":"[\n  {\n    \"id\": \"62de6d714e29485a81824fe3\",\n    \"eventType\": \"asset.remove\",\n    \"userId\": \"1A84D758-2B3A-141F-8F07D71AA1F223BD\",\n    \"dateTime\": \"2021-11-15T10:07:57.781+00:00\",\n    \"assetId\": \"CA510292-E39E-4B28-AB6444CDD2B1C5C0\",\n    \"assetType\": \"image\",\n    \"assetName\": \"Product Insights\",\n    \"assetAudit\": \"ACCEPTED\",\n    \"fileName\": \"CA510292-E39E-4B28-AB6444CDD2B1C5C___Product Insights\"\n  },\n  {\n    \"id\": \"62de6d714e29485a81824fe4\",\n    \"eventType\": \"asset.remove\",\n    \"userId\": \"1A84D758-2B3A-141F-8F07D71AA1F223BD\",\n    \"dateTime\": \"2021-11-15T10:08:18.752+00:00\",\n    \"assetId\": \"C58ED8C6-6B09-4CD6-B71C32C6715834F1\",\n    \"assetType\": \"image\",\n    \"assetName\": \"Reporting Schedule Nov 2022\",\n    \"assetAudit\": \"ACCEPTED\",\n    \"fileName\": \"C58ED8C6-6B09-4CD6-B71C32C6715834F1___Reporting Schedule Nov 2022\"\n  }\n]\n"}}}}}}}},"/v7/analytics/api/v1/asset/{assetId}":{"get":{"summary":"Retrieve all events performed in a given asset","description":"This endpoint will allow you to retrieve all the events performed in a given asset.","tags":["Asset Usage V1"],"parameters":[{"name":"assetId","in":"path","description":"Asset id.","required":true,"schema":{"type":"string","example":"00000000-0000-0000-0000000000000000"}},{"name":"limit","in":"query","description":"The maximum number of analytics events to retrieve. Allowed values are between 1 and 10000.","required":false,"schema":{"type":"integer","default":1000,"example":100}},{"name":"cursor","in":"query","description":"Cursor mark returned in the response headers to be used for pagination purposes.","required":false,"schema":{"type":"string","default":"MA","example":"MTAwMA"}},{"name":"fromDateTime","in":"query","description":"Retrieve events performed in a given asset occurred after this date. ISO8601 format yyyy-mm-ddThh:mm[:ssZ] with optional seconds.","required":false,"schema":{"type":"string","format":"date-time","example":"2022-01-01T01:00"}},{"name":"toDateTime","in":"query","description":"Set a date range together with the \"fromDateTime\" parameter.","required":false,"schema":{"type":"string","format":"date-time","example":"2022-06-01T01:00"}}],"responses":{"200":{"description":"Successful response","headers":{"Next-Cursor":{"description":"The next cursor value to send if you want to continue with your paginated request.","schema":{"type":"string","example":"MTAwMA"}},"Next-Url":{"description":"The next url path to query if you want to continue with your paginated request.","schema":{"type":"string","example":"/api/v1/asset/CA510292-E39E-4B28-AB6444CDD2B1C5C0?limit=1000&cursor=MTAwMA"}}},"content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","example":"62de6d714e29485a81824fe3"},"eventType":{"type":"string","example":"asset.download"},"userId":{"type":"string","example":"1A84D758-2B3A-141F-8F07D71AA1F223BD"},"dateTime":{"type":"string","format":"date-time","example":"2021-11-15T10:07:57.781+00:00"},"assetId":{"type":"string","example":"CA510292-E39E-4B28-AB6444CDD2B1C5C0"},"assetType":{"type":"string","example":"image"},"assetName":{"type":"string","example":"Product Insights"},"assetAudit":{"type":"string","example":"ACCEPTED"},"fileName":{"type":"string","example":"CA510292-E39E-4B28-AB6444CDD2B1C5C___Product Insights"},"mediaItemId":{"type":"string","example":"69293464-7721-4062-9E05EFAF23FE70E7"},"mediaItemType":{"type":"string","example":"original"}}}},"examples":{"example-1":{"summary":"Example response","value":"[\n  {\n    \"id\": \"62de6d714e29485a81824fe3\",\n    \"eventType\": \"asset.download\",\n    \"userId\": \"1A84D758-2B3A-141F-8F07D71AA1F223BD\",\n    \"dateTime\": \"2021-11-15T10:07:57.781+00:00\",\n    \"assetId\": \"CA510292-E39E-4B28-AB6444CDD2B1C5C0\",\n    \"assetType\": \"image\",\n    \"assetName\": \"Product Insights\",\n    \"assetAudit\": \"ACCEPTED\",\n    \"fileName\": \"CA510292-E39E-4B28-AB6444CDD2B1C5C___Product Insights\",\n    \"mediaItemId\": \"69293464-7721-4062-9E05EFAF23FE70E7\",\n    \"mediaItemType\": \"original\"\n  },\n  {\n    \"id\": \"62de6d714e29485a81824fe4\",\n    \"eventType\": \"asset.view\",\n    \"userId\": \"1A84D758-2B3A-141F-8F07D71AA1F223BD\",\n    \"dateTime\": \"2021-11-15T10:08:18.752+00:00\",\n    \"assetId\": \"CA510292-E39E-4B28-AB6444CDD2B1C5C0\",\n    \"assetType\": \"image\",\n    \"assetName\": \"Product Insights\",\n    \"assetAudit\": \"ACCEPTED\",\n    \"fileName\": \"CA510292-E39E-4B28-AB6444CDD2B1C5C___Product Insights\"\n  }\n]\n"}}}}}}}},"/v7/analytics/api/v1/search/executions":{"get":{"summary":"Retrieve search execution events","tags":["Search Usage"],"parameters":[{"name":"limit","in":"query","description":"The maximum number of analytics events to retrieve. Allowed values are between 1 and 10000.","required":false,"schema":{"type":"integer","default":1000}},{"name":"cursor","in":"query","description":"Cursor mark returned in the response headers to be used for pagination purposes.","required":false,"schema":{"type":"string","default":"MA"}},{"name":"fromDateTime","in":"query","description":"Retrieve executions events occurred after this date. ISO8601 format yyyy-mm-ddThh:mm[:ssZ] with optional seconds.","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"toDateTime","in":"query","description":"Set a date range together with the \"fromDateTime\" parameter. ISO8601 format yyyy-mm-ddThh:mm[:ssZ] with optional seconds.","required":false,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"Successful response","headers":{"Next-Cursor":{"description":"The next cursor value to send if you want to continue with your paginated request.","schema":{"type":"string"}},"Next-Url":{"description":"The next URL path to query if you want to continue with your paginated request.","schema":{"type":"string"}}},"content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"eventId":{"type":"string","example":"1408aec2-3114-43dd-be20-ffb1246a5231"},"eventType":{"type":"string","example":"SearchExecuted"},"dateTime":{"type":"string","format":"date-time","example":"2021-11-15T10:07:57.781+00:00"},"userId":{"type":"string","example":"1A84D758-2B3A-141F-8F07D71AA1F223BD"},"terms":{"type":"array","items":{"type":"string"},"example":["digital"]},"filters":{"type":"array","items":{"type":"object","properties":{"field":{"type":"string","example":"language"},"value":{"type":"string","example":"english"}}}},"operator":{"type":"string","example":"OR"},"sortOrder":{"type":"object","properties":{"field":{"type":"string","example":"datePublished"},"order":{"type":"string","example":"desc"}}},"results":{"type":"object","properties":{"assets":{"type":"integer","example":48}}}}}},"examples":{"example-1":{"summary":"Example response","value":"[\n  {\n    \"eventId\": \"1408aec2-3114-43dd-be20-ffb1246a5231\",\n    \"eventType\": \"SearchExecuted\",\n    \"dateTime\": \"2021-11-15T10:07:57.781+00:00\",\n    \"userId\": \"1A84D758-2B3A-141F-8F07D71AA1F223BD\",\n    \"terms\": [\"digital\"],\n    \"filters\": [{\"field\": \"language\", \"value\": \"english\"}],\n    \"operator\": \"OR\",\n    \"sortOrder\": {\"field\": \"datePublished\", \"order\": \"desc\"},\n    \"results\": {\"assets\": 48}\n  },\n  {\n    \"eventId\": \"5908aec2-3114-43dd-be20-ffb1246a5231\",\n    \"eventType\": \"SearchExecuted\",\n    \"dateTime\": \"2021-11-15T10:07:57.781+00:00\",\n    \"userId\": \"1A84D758-2B3A-141F-8F07D71AA1F223BD\",\n    \"terms\": [\"template\"],\n    \"filters\": [{\"field\": \"language\", \"value\": \"spanish\"}],\n    \"operator\": \"OR\",\n    \"sortOrder\": {\"field\": \"datePublished\", \"order\": \"asc\"},\n    \"results\": {\"assets\": 23}\n  }\n]\n"}}}}}}}},"/v7/analytics/api/v1/search/keyword":{"get":{"summary":"Retrieve search keyword events","description":"Deprecated. Use the Search Executions endpoint instead.","tags":["Search Usage"],"parameters":[{"name":"limit","in":"query","description":"The maximum number of analytics events to retrieve. Allowed values are between 1 and 10000.","required":false,"schema":{"type":"integer","default":1000}},{"name":"cursor","in":"query","description":"Cursor mark returned in the response headers to be used for pagination purposes.","required":false,"schema":{"type":"string","default":"MA"}},{"name":"fromDateTime","in":"query","description":"Retrieve keyword events occurred after this date. ISO8601 format yyyy-mm-ddThh:mm[:ssZ] with optional seconds.","required":false,"schema":{"type":"string","format":"date-time"}},{"name":"toDateTime","in":"query","description":"Set a date range together with the \"fromDateTime\" parameter. ISO8601 format yyyy-mm-ddThh:mm[:ssZ] with optional seconds.","required":false,"schema":{"type":"string","format":"date-time"}}],"responses":{"200":{"description":"Successful response","headers":{"Next-Cursor":{"description":"The next cursor value to send if you want to continue with your paginated request.","schema":{"type":"string"}},"Next-Url":{"description":"The next URL path to query if you want to continue with your paginated request.","schema":{"type":"string"}}},"content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","example":"62de6d714e29485a81824fe3"},"eventType":{"type":"string","example":"search.keyword"},"userId":{"type":"string","example":"1A84D758-2B3A-141F-8F07D71AA1F223BD"},"dateTime":{"type":"string","format":"date-time","example":"2021-11-15T10:07:57.781+00:00"},"keyword":{"type":"string","example":"digital templates"},"totalResults":{"type":"integer","example":27},"tagsResults":{"type":"integer","example":0},"assetsResults":{"type":"integer","example":24},"documentsResults":{"type":"integer","example":0},"guidelinesResults":{"type":"integer","example":0},"collectionsResults":{"type":"integer","example":3},"metapropertiesResults":{"type":"integer","example":0},"collectionAssetsResults":{"type":"integer","example":0},"workflowCampaignsResults":{"type":"integer","example":0},"brandstoreProductsResults":{"type":"integer","example":0}}}},"examples":{"example-1":{"summar

# --- truncated at 32 KB (55 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/bynder/refs/heads/main/openapi/bynder-analytics-openapi.json