Bynder Asset Usage API

These calls allow you to keep track of assets being exported from Bynder and imported into a third party application. In order to get started or find an existing integration id you should check out this Bynder support article. If you want to register a new third party application please contact us at [support@bynder.com](mailto:support@bynder.com). __Warning:__ Requires the STATISTICS security role.

Operations 3

GET /api/media/usage Retrieve asset usage
POST /api/media/usage Create asset usage
DELETE /api/media/usage Delete asset usage

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-asset-usage-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 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 Specification

bynder-asset-usage-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Asset Usage API
  version: 1.0.0
  description: 'These calls allow you to keep track of assets being exported from Bynder and imported into a third party application. In order to get started or find an existing integration id you should check out this [Bynder support](https://help.bynder.com/en/216226-track-asset-usage.html#UUID-5db586ff-9502-8e5b-4355-ca3630fceee3_N1579707153615_body) article. If you want to register a new third party application please contact us at [support@bynder.com](mailto:support@bynder.com).

    '
servers:
- url: https://{your-bynder-domain}/
security:
- OAuth2:
  - STATISTICS
- permanentToken:
  - STATISTICS
tags:
- name: Asset Usage
  description: 'These calls allow you to keep track of assets being exported from Bynder and imported into a third party application. In order to get started or find an existing integration id you should check out this Bynder support article. If you want to register a new third party application please contact us at [support@bynder.com](mailto:support@bynder.com).


    __Warning:__ Requires the STATISTICS security role.

    '
paths:
  /api/media/usage:
    get:
      summary: Retrieve asset usage
      description: Retrieve asset usage information.
      tags:
      - Asset Usage
      parameters:
      - in: query
        name: asset_id
        schema:
          type: string
        description: Asset id.
      - in: query
        name: integration_id
        schema:
          type: string
        description: Integration id.
      - in: query
        name: uri
        schema:
          type: string
        description: URI.
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    asset_id:
                      type: string
                    id:
                      type: string
                    integration:
                      type: object
                      properties:
                        id:
                          type: string
                        description:
                          type: string
                    timestamp:
                      type: string
                      format: date-time
                    uri:
                      type: string
                    additional:
                      type: string
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                type: object
                properties:
                  asset_id:
                    type: string
    post:
      summary: Create asset usage
      description: Create a new asset usage entry.
      tags:
      - Asset Usage
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                integration_id:
                  type: string
                  description: Integration id.
                asset_id:
                  type: string
                  description: Asset id.
                timestamp:
                  type: string
                  format: date-time
                  description: Datetime in ISO8601 format.
                uri:
                  type: string
                  description: Location.
                additional:
                  type: string
                  description: Additional information.
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  uri:
                    type: string
                  additional:
                    type: string
                  asset_id:
                    type: string
                  timestamp:
                    type: string
                    format: date-time
                  integration:
                    type: object
                    properties:
                      id:
                        type: string
                      description:
                        type: string
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                type: object
                properties:
                  integration_id:
                    type: string
                  asset_id:
                    type: string
    delete:
      summary: Delete asset usage
      description: Delete an asset usage entry.
      tags:
      - Asset Usage
      parameters:
      - in: query
        name: integration_id
        schema:
          type: string
        description: Integration id.
      - in: query
        name: asset_id
        schema:
          type: string
        description: Asset id.
      - in: query
        name: uri
        schema:
          type: string
        description: Asset location.
      responses:
        '204':
          description: No Content
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                type: object
                properties:
                  integration_id:
                    type: string
                  asset_id:
                    type: string
components:
  securitySchemes:
    permanentToken:
      type: apiKey
      in: header
      name: Authorization
    OAuth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
          scopes:
            STATISTICS: ''
        authorizationCode:
          authorizationUrl: https://{your-auth-url}
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
          scopes:
            STATISTICS: ''