Skip to main content
The PROlinks REST API is only available on the PRO plan.
The PROlinks API allows you to create and interact with links and resources on PROlinks through a simple REST API.

Authentication

In order to use the API, you should authenticate your request by including your API key as a bearer token value:
Authorization: Bearer API_KEY_HERE
You may generate your API key in the API Dashboard.

Headers

Make sure you have the following content type headers set on every request:
    Accept: application/json
    Content-Type: application/json

URI

PROlinks API is hosted on the following base URI:
    https://prolinks.pro/api/v1

Errors

PROlinks uses conventional HTTP response codes to indicate the success or failure of an API request. The table below contains a summary of the typical response codes:
CodeDescription
200Everything is ok.
400Valid data was given but the request has failed.
401No valid API Key was given.
404The request resource could not be found.
422The payload has missing required parameters or invalid data was given.
429Too many attempts.
500Request failed due to an internal error in PROlinks.
503PROlinks is offline for maintenance.