MeWe Open API Developer Preview

API Communication

All API requests must originate from your application's backend server. Direct client-side calls are not permitted for security reasons.

Each request must include the appropriate headers as described below. You can find this information also in our API documentation of each endpoint.

API Host

Throughout this documentation, MEWE_HOST is used as a placeholder for the API base URL. Replace this placeholder with the appropriate host for your target environment.

EnvironmentHost
Productionhttps://mewe.com
CurrentLoading...

Headers

All API requests must include specific headers for authentication and identification. Your credentials are available in the Developer Portal.

HeaderDescriptionRequired
X-App-IdYour unique application identifierAll requests
X-Api-KeyYour application's secret API keyAuthorization requests
AuthorizationBearer token: Bearer <apiToken>Authenticated requests

Header Details

X-App-Id — Include this header in every API request to identify your application.

X-Api-Key — Required only when requesting the loginRequestToken and apiToken during the authentication flow.

Authorization — After obtaining an apiToken through authentication, include it as a Bearer token for all subsequent API requests.

Was this page helpful?