This method will return accounts that lay within the specified lamport range or value. Running with only required body params will return all recent instructions and default to 10 objects. Feel free to make use of all non-required body params for more advanced queries. Refer to the Body "Schema" tab for help
Lamports Type
The 'lamports' field follows the below type. You can make use of the 'gte', 'lte', or 'eq' params to achieve your desired result:
// Either an equality check, or GTE/LTE range, one of which must be set.exporttypeNumericRange=XOR<XOR<{ gte:number; lte?:number;}, { gte?:number; lte:number;}>, { eq:number }>;
Example - Basic
Program - Candy Machine
Description - Return all CandyMachine accounts with a lamports balance greater than 10000000
Description - Return all OrdersAccount accounts with a lamports balance greater than 10000000. Look Only in the specific time range and return all response body fields.