API

Create monetized links from your own workflow.

Use the LVE.TO API to shorten URLs, send visitors through your ad flow, and track results in your account.

LVE.TO API
Link creation

All requests must include your API key using the api_key parameter. Get your API key from your dashboard.


GET https://lve.to/api/link/create

Parameter Required Description
api_key Yes Your personal API key
url Yes URL must start with https://.
Only web pages returning HTTP 200 are supported.
Direct file links are not allowed.
fallback No Redirect URL if no ads are available

https://lve.to/api/link/create?api_key=YOUR_API_KEY&url=https://example.com/path

  • The url must be a valid full URL, including https://.
  • The destination must return HTTP 200. No files.
  • The fallback is used when no ads are available.
  • Rate limit: 10 requests per minute.
  • Daily limit: 600 links per day.

{
  "ok": true,
  "link": "https://lve.to/f3234fwedf"
}

{
  "ok": false,
  "code": 403,
  "message": "Invalid API key"
}
Use the same API key from your creator dashboard for every request.