Developer Guide · 5 minutes

Getting started

Register or log in, explore the API catalogue and make your first API call. This guide walks you through the complete onboarding flow.

Step 01Register for Europcar Mobility Group developer portalCreate your account

Step 1. Register or log in

Europcar Mobility Group employees can log in directly using SSO, no registration needed. For any concern regarding your SSO access, contact the API & Event Factory team.

External partners and developers can sign up to create a new account. Your access request will be reviewed by the API & Event Factory team before activation.

Step 02Explore the EMobG API catalogueBrowse API products

Step 2. Explore the API catalogue

Access the API catalogue to discover all EMobG APIs. Each API product includes interactive documentation with a built-in Try it out functionality. Test endpoints directly from the browser. See how to authenticate below to start making requests.

3Authenticate

Request your access token

Use the following cURL command to request an access token. Replace the placeholder values with your actual credentials.

curl -X POST https://api.europcar-mobility-group.com/auth/token \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d "grant_type=client_credentials" \
  -d "client_id=YOUR_CLIENT_ID" \
  -d "client_secret=YOUR_CLIENT_SECRET"

The response returns a JSON payload with your bearer token:

{
  "access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
  "token_type": "Bearer",
  "expires_in": 3600,
  "scope": "fleet:read vehicles:read"
}

4Test your integration

Make your first API call

The fastest way to test an API is to use the Try it out functionality available on every API product page in the API catalogue. Select any endpoint, fill in the required parameters and execute the request directly from the browser.

The Try it out feature supports code generation in Shell, Python, Node, JavaScript, Go, Java, C# and Ruby. Copy the generated snippet into your application and you are ready to go.

5Go to production

Environments

Europcar Mobility Group provides non-production environments that are available depending on the API product. Availability, base URLs and specific limitations vary per API. Please refer to the API overview documentation of each API product in the catalogue for full details on available environments, rate limits and access conditions.


Next steps

Now that you can authenticate and make API calls, explore our full API catalogue and reach out to the team if you need support.

Explore all APIs

Browse the complete API catalogue with interactive documentation, request builders and downloadable OpenAPI specifications.

Browse APIs

Authentication guide

Deep dive into OAuth 2.0 client credentials flow, token lifecycle management and best practices for securing your API integrations.

Read the guide

Contact the API Factory Team

Need help with access, credentials, or a specific integration? The API & Event Factory team is here to support you throughout your journey.

Contact us