import Fiatwebservices from 'fiatwebservices';const client = new Fiatwebservices({ apiKey: process.env['FWS_API_KEY'], // This is the default and can be omitted});async function main() { const response = await client.ping(); console.log(response.message);}main();
import Fiatwebservices from 'fiatwebservices';const client = new Fiatwebservices({ apiKey: process.env['FWS_API_KEY'], // This is the default and can be omitted});async function main() { const response = await client.ping(); console.log(response.message);}main();
Copy
{ "message": "pong"}
Assistant
Responses are generated using AI and may contain mistakes.