Skip to content

Get legal page data

GET
/api/legal/page-data

Authorizations

api_key
Type: API Key (header: X-CSRF-Token)

Responses

Success
Authorization
api_key
cURL
curl -X GET \
'http://localhost/api/legal/page-data'

Samples

cURL
curl -X GET http://localhost/api/legal/page-data
JavaScript
fetch("http://localhost/api/legal/page-data")
  .then(response => response.json())
  .then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/legal/page-data");
Python
import requests
response = requests.get("http://localhost/api/legal/page-data")
print(response.json())