Bynder Account API

The Account API from Bynder — 2 operation(s) for account.

Operations 2

GET /api/v4/account Retrieve account information
GET /api/v4/account/derivatives Retrieve derivatives

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-account-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-account-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Account API
  version: 1.0.0
servers:
- url: https://{your-bynder-domain}/
security:
- OAuth2: []
- permanentToken: []
tags:
- name: Account
  description: ''
paths:
  /api/v4/account:
    get:
      summary: Retrieve account information
      tags:
      - Account
      responses:
        '200':
          description: Account information retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  availableLanguages:
                    type: array
                    items:
                      type: string
                    example:
                    - nl_NL
                    - en_GB
                    - en_US
                    - fr_FR
                    - de_DE
                    - it_IT
                    - es_ES
                    - pl_PL
                  defaultLanguage:
                    type: string
                    example: en_US
                  name:
                    type: string
                    example: Bynder
                  timeZone:
                    type: string
                    example: Europe/Amsterdam
                  isOpenImageBank:
                    type: boolean
                    example: false
  /api/v4/account/derivatives:
    get:
      summary: Retrieve derivatives
      description: 'A derivative is a file that is based on another source, for example, a low-resolution representation of a print-quality photo. During the upload process, Bynder can automatically create pre-defined image derivatives with different dimensions, quality, and format. Bynder can either maintain the original aspect ratio of an image, or crop or pad an image to fit the specified dimensions. We can create smaller versions of your original image asset in both a JPG and PNG file extension. However, the resolution of derivatives can''t be larger than the original file.

        '
      tags:
      - Account
      responses:
        '200':
          description: Derivatives retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    prefix:
                      type: string
                      example: 500x500
                    height:
                      type: integer
                      example: 500
                    isCrop:
                      type: boolean
                      example: true
                    dpi:
                      type: integer
                      example: -1
                    width:
                      type: integer
                      example: 500
                    allowedTypes:
                      type: string
                      example: ''
                    isOnTheFly:
                      type: boolean
                      example: true
                    isExtent:
                      type: boolean
                      example: false
                    isPublic:
                      type: boolean
                      example: true
components:
  securitySchemes:
    permanentToken:
      type: apiKey
      in: header
      name: Authorization
    OAuth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
          scopes: {}
        authorizationCode:
          authorizationUrl: https://{your-auth-url}
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
          scopes: {}