Authentication

Generate API credentials to authenticate and access Medianova APIs.

API authentication in Medianova is managed through secure token generation in the Medianova Control Panel. After creating a token, you will receive your API credentials (API Key and Secret), which authorize access to analytics and operational endpoints across the platform.

Each token remains valid for 30 days and can be renewed anytime from the Medianova Control Panel.

To view or manage your tokens, log in to the Medianova Control Panel, navigate to Profile → My Account → API Tokens, and click Generate Token to create a new credential. Store the generated token securely — it will be displayed only once.

Generate API Token

post

Generates a token for accessing the Medianova API. Use the generated token to access analytics stats and perform operations.

Body
api_keystringRequired

Your API key.

api_secretstringRequired

Your API secret.

Responses
200

Successful response with generated token.

application/json
post
/api/v1/auth/login/token
POST /api/v1/auth/login/token HTTP/1.1
Host: cloud.medianova.com
Content-Type: application/json
Accept: */*
Content-Length: 42

{
  "api_key": "string",
  "api_secret": "string"
}
200

Successful response with generated token.

{
  "status": true,
  "token": "hidden_token",
  "session": "hidden_session",
  "expire": 1666024005
}

Last updated

Was this helpful?