API Playground

API Playground

Test your QuietStack API key and see blockchain verification in action

Make a Request

Configure your API request and see it in action

Generated Code

Copy this code to use in your application

const response = await fetch('https://api.quietstack.ai/v1/proxy', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer qs_live_YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    provider: 'openai',
    model: 'gpt-3.5-turbo',
    messages: [{
      role: 'user',
      content: 'What is blockchain verification and why is it important for AI?'
    }]
  })
});

const data = await response.json();
console.log(data);

Make a request to see the response and blockchain verification