Bynder Authorize endpoint API

When using the Authorization Code grant, redirect the user to the [Authorize application](#reference/oauth-2.0/authorize-endpoint/authorize-application) endpoint. After the user is authenticated and approves the authorization request, Bynder will redirect the user back with an authorization code which can then be passed to the [Token endpoint](#reference/oauth-2.0/token-endpoint/using-an-authorization-code).

Operations 1

GET /v6/authentication/oauth2/auth Authorize endpoint

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-authorize-endpoint-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-authorize-endpoint-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OAuth 2.0 Authorize endpoint API
  version: 1.0.0
  description: 'When using the Authorization Code grant, redirect the user to the [Authorize application](#reference/oauth-2.0/authorize-endpoint/authorize-application) endpoint. After the user

    is authenticated and approves the authorization request, Bynder will redirect the user back with an

    authorization code which can then be passed to the [Token endpoint](#reference/oauth-2.0/token-endpoint/using-an-authorization-code).

    '
tags:
- name: Authorize endpoint
  description: 'When using the Authorization Code grant, redirect the user to the [Authorize application](#reference/oauth-2.0/authorize-endpoint/authorize-application) endpoint. After the user

    is authenticated and approves the authorization request, Bynder will redirect the user back with an

    authorization code which can then be passed to the [Token endpoint](#reference/oauth-2.0/token-endpoint/using-an-authorization-code).

    '
paths:
  /v6/authentication/oauth2/auth:
    get:
      summary: Authorize endpoint
      description: 'When using the Authorization Code grant, redirect the user to the Authorize application endpoint. After the user is authenticated and approves the authorization request, Bynder will redirect the user back with an authorization code which can then be passed to the Token endpoint.

        '
      tags:
      - Authorize endpoint
      parameters:
      - name: client_id
        in: query
        required: true
        schema:
          type: string
        example: 00000000-0000-0000-0000-000000000000
      - name: scope
        in: query
        required: true
        schema:
          type: string
        example: offline asset:read
      - name: redirect_uri
        in: query
        required: true
        schema:
          type: string
        example: https://localhost/callback
      - name: response_type
        in: query
        required: true
        schema:
          type: string
        example: code
      - name: state
        in: query
        required: false
        schema:
          type: string
        example: xyz
      responses:
        '302':
          description: Found. Redirecting to the login provider.
          headers:
            Location:
              description: URL to redirect the user to for login.
              schema:
                type: string
          content:
            text/plain:
              examples:
                example-1:
                  value: Found. Redirecting to https://your-bynder-domain/v6/login-provider/login?login_challenge=8e41a26ceb3b845114b5a37d9d0e2e50
      security:
      - OAuth2: []