Learn how to authenticate your API requests with Pulpminer
curl -H "apikey: YOUR_API_KEY" https://api.pulpminer.com/external/YOUR_API_ID
apikey
YOUR_API_KEY
curl -H "apikey: YOUR_API_KEY" https://api.pulpminer.com/external/123
const response = await fetch('https://api.pulpminer.com/external/123', { headers: { 'apikey': 'YOUR_API_KEY' } }); const data = await response.json();
import requests headers = { 'apikey': 'YOUR_API_KEY' } response = requests.get('https://api.pulpminer.com/external/123', headers=headers) data = response.json()
{ "data": null, "errors": [ { "message": "Path: apikey - Message: Required" } ] }
{ "data": null, "errors": [ { "message": "invalid key" } ] }