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.
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.
Generates a token for accessing the Medianova API. Use the generated token to access analytics stats and perform operations.
Your API key.
Your API secret.
Successful response with generated 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"
}Successful response with generated token.
{
"status": true,
"token": "hidden_token",
"session": "hidden_session",
"expire": 1666024005
}Last updated
Was this helpful?