List RFQs

import { NorthstakeApi } from '@northstake/northstakeapi';
const api = new NorthstakeApi('apiKey', 'privateKey')

 const { body: openRFQs } = await api.validatorMarketplaceBuyers.listRFQDocumentsForBuyer('open')
 console.log(openRFQs)
 const { body: acceptedRFQs } = await api.validatorMarketplaceBuyers.listRFQDocumentsForBuyer('accepted')
 console.log(acceptedRFQs)
Language
Click Try It! to start a request and see the response here!