1// Update API key (PATCH /keys/:hash)2const response = await fetch("https://openrouter.ai/api/v1/keys/hash", {3 method: "PATCH",4 headers: {5 "Authorization": "Bearer ",6 "Content-Type": "application/json"7 },8 body: JSON.stringify({}),9});1011const body = await response.json();12console.log(body);