Skip to content

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 ​

ParameterType
opts{ county?: string; rows?: number; state: string; }
opts.county?string
opts.rows?number
opts.statestring

Returns ​

Promise<TRIFacility[]>

Released under the MIT License.