API PERENDER is a structured service that functions as an intermediary, allowing your requests to be executed in our business logic.
To make requests to the API, it is necessary to send the PERENDER TOKEN in all cases. You can obtain the PERENDER TOKEN from the dashboard.
PERENDER TOKEN is a JWT (JSON Web Token) that defines a compact and self-contained way of representing information between two parties in a secure manner as a JSON object. This token can be verified and trusted as it is digitally signed.
You can regenerate a new token at any time. Your token should not be exposed in your applications as any malicious user can impersonate your identity if acquired.
All requests are made to the address: https://api.perender.com/render.
To test the example, open a command prompt and paste the provided code. Don't forget to replace @("[PERENDER_TOKEN]") with your token from the dashboard.
Shell
curl -X GET "https://api.perender.com/render?url=https%3A%2F%2Fexample.com&botAgent=integration-test" -H "accept: */*" -H "Authorization: Bearer [PERENDER_TOKEN]"