get https://api.northstake.dk/v1/validatorMarketplace/sellers/documents/
Endpoint for sellers (depositors) to retrieve a specific RFQ by ID in the validator marketplace.
import { NorthstakeApi } from '@northstake/northstakeapi';
const api = new NorthstakeApi('apiKey', 'privateKey')
const { body: RFQ } = await api.validatorMarketplaceSellers.getRFQ('rfq-id-1234')
console.log(`
RFQ id: ${RFQ.id}
best quote: ${RFQ.best_quote}
status: ${RFQ.status}
settlement: ${RFQ.settlement_steps}
`)