Skip to main content

Orange Developer API getting started

Prerequisite before starting : X-API-Key

This API is secured by the OAuth 2.0 framework as explained below in the Authentication prerequisite paragraph, and requires the presentation of a valid OAuth 2.0 access token. It also requires the supply of an API Key:

  • your Orange Business representative will provide you this API Key
  • the API Key must be supplied in each API call as value of a X-API-Key HTTP header.

Authentication prerequisite

Access to this API is secured by the OAuth 2.0 framework with the Client Credentials grant type, which means that you will have to present an OAuth 2.0 access_token whenever you want to request this API. It's easy to negotiate this access_token: just send a request to the proper token negotiation endpoint, with a Basic Authentication header valued with your own client_id and client_secret. For this API, the token negotiation endpoint is:

https://api.orange.com/oauth/v3/token

A technical guide is available to learn how to negotiate and manage these access_token.