Function: getToxicReleases() ​
ts
function getToxicReleases(opts: {
county?: string;
rows?: number;
state: string;
}): Promise<TRIFacility[]>;Defined in: epa/sdk.ts:386
Get Toxics Release Inventory (TRI) facility data by state. Returns facilities reporting chemical releases to EPA under EPCRA Section 313.
Example: const data = await getToxicReleases({ state: "TX" }); const data = await getToxicReleases({ state: "CA", rows: 50 });
Parameters ​
| Parameter | Type |
|---|---|
opts | { county?: string; rows?: number; state: string; } |
opts.county? | string |
opts.rows? | number |
opts.state | string |
Returns ​
Promise<TRIFacility[]>