Widen Analytics API
Asset download, share, and view analytics endpoints.
Asset download, share, and view analytics endpoints.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/widen-analytics-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Acquia DAM (Widen) Acquia-DAM-Webhooks Analytics API
description: 'Acquia Digital Asset Management (formerly Widen Collective) provides REST APIs for managing digital assets, metadata, collections, embed codes, and asset distribution workflows. The API supports asset search and discovery, metadata management, analytics, orders, products, webhooks, and workflow automation across both v1 and v2 endpoints.
'
version: '2.0'
contact:
name: Acquia Support
url: https://acquia.my.site.com/s/
x-api-id: acquia-dam
license:
name: Proprietary
servers:
- url: https://api.widencollective.com/v2
description: Acquia DAM API v2
- url: https://api.widencollective.com/v1
description: Acquia DAM API v1 (legacy)
security:
- bearerAuth: []
tags:
- name: Analytics
description: Asset download, share, and view analytics endpoints.
paths:
/analytics/assets/downloads:
post:
operationId: listAssetDownloads
summary: List asset download events
tags:
- Analytics
description: 'Retrieve a list of Asset Download events. Events may take up to 24 hours before appearing. Three years of analytics data is available, starting from January 1, 2021.
'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/AnalyticsRequestBody'
responses:
'200':
description: List of download events
content:
application/json:
schema:
$ref: '#/components/schemas/ListAssetDownloadsResponse'
/analytics/assets/shares:
post:
operationId: listAssetShares
summary: List asset share events
tags:
- Analytics
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/AnalyticsRequestBody'
responses:
'200':
description: List of share events
content:
application/json:
schema:
$ref: '#/components/schemas/ListAssetSharesResponse'
/analytics/assets/views:
post:
operationId: listAssetViews
summary: List asset view events
tags:
- Analytics
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/AnalyticsRequestBody'
responses:
'200':
description: List of view events
content:
application/json:
schema:
$ref: '#/components/schemas/ListAssetViewsResponse'
components:
schemas:
IntendedUseProperties:
type: object
properties:
value:
type:
- string
- 'null'
DateRangeFilter:
type: object
required:
- start
- end
- type
properties:
start:
type: string
format: date-time
end:
type: string
format: date-time
type:
type: string
enum:
- date_range
AssetFilter:
type: object
required:
- id
- type
properties:
id:
type: string
description: Asset UUID
type:
type: string
enum:
- asset
UserProperties:
type: object
properties:
id:
type:
- string
- 'null'
DownloadAssetEvent:
type: object
properties:
asset_properties:
$ref: '#/components/schemas/AssetProperties'
conversion_properties:
$ref: '#/components/schemas/ConversionProperties'
file_properties:
$ref: '#/components/schemas/FileProperties'
intended_use_properties:
$ref: '#/components/schemas/IntendedUseProperties'
referrer:
type: string
timestamp:
type: string
format: date-time
user_properties:
$ref: '#/components/schemas/UserProperties'
ListAssetViewsResponse:
type: object
properties:
items:
type: array
items:
$ref: '#/components/schemas/ViewAssetEvent'
pagination_token:
type:
- string
- 'null'
total_count:
type: integer
ListAssetDownloadsResponse:
type: object
properties:
items:
type: array
items:
$ref: '#/components/schemas/DownloadAssetEvent'
pagination_token:
type:
- string
- 'null'
total_count:
type: integer
ListAssetSharesResponse:
type: object
properties:
items:
type: array
items:
$ref: '#/components/schemas/ShareAssetEvent'
pagination_token:
type:
- string
- 'null'
total_count:
type: integer
ShareAssetEvent:
type: object
properties:
asset_properties:
$ref: '#/components/schemas/AssetProperties'
referrer:
type: string
timestamp:
type: string
format: date-time
user_properties:
$ref: '#/components/schemas/UserProperties'
AnalyticsRequestBody:
type: object
required:
- filters
properties:
filters:
type: array
items:
oneOf:
- $ref: '#/components/schemas/AssetFilter'
- $ref: '#/components/schemas/DateRangeFilter'
limit:
type: integer
minimum: 1
maximum: 100
default: 100
pagination_token:
type:
- string
- 'null'
FileProperties:
type: object
properties:
file_type:
type: string
format:
type: string
size_in_bytes:
type: integer
ConversionProperties:
type: object
properties:
output_file_format:
type:
- string
- 'null'
output_file_type:
type:
- string
- 'null'
ViewAssetEvent:
type: object
properties:
asset_properties:
$ref: '#/components/schemas/AssetProperties'
file_properties:
$ref: '#/components/schemas/FileProperties'
intended_use_properties:
$ref: '#/components/schemas/IntendedUseProperties'
referrer:
type: string
timestamp:
type: string
format: date-time
user_properties:
$ref: '#/components/schemas/UserProperties'
AssetProperties:
type: object
properties:
id:
type: string
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
description: OAuth2 Bearer token obtained from Acquia DAM.
externalDocs:
description: Acquia DAM API v2 Documentation
url: https://docs.acquia.com/acquia-dam/api-v2