🔍 API Explorer

Test and explore the Tenacious Tapes API endpoints

API Configuration

🔒 Security Notice: This API explorer is for authorized users only. All API requests require valid authentication tokens. Do not share your API token with unauthorized parties.
Your token from the current session

Query Builder

Quick Queries

Query Parameters

Response

🚀

Click "Submit" to execute your first API query

Code Examples

cURL

curl -H "Authorization: Bearer YOUR_TOKEN" \
     -H "Content-Type: application/json" \
     https://api.tenacioustapes.com.au/api/products

JavaScript (Fetch)

fetch('https://api.tenacioustapes.com.au/api/products', {
  headers: {
    'Authorization': 'Bearer YOUR_TOKEN',
    'Content-Type': 'application/json'
  }
})
.then(response => response.json())
.then(data => console.log(data));

PHP

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.tenacioustapes.com.au/api/products');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'Authorization: Bearer YOUR_TOKEN',
    'Content-Type: application/json'
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
$data = json_decode($response, true);