- Authentication
- API Keys
Request
1 // Delete API key (DELETE /keys/:hash) 2 const response = await fetch("https://openrouter.ai/api/v1/keys/hash", { 3 method: "DELETE", 4 headers: { 5 "Authorization": "Bearer " 6 }, 7 }); 8 9 const body = await response.json(); 10 console.log(body);
Response