Action that retrieves US Census demographic and economic data for a given location. Uses the US Census Bureau API to provide population, income, housing, and other statistics.

Example

// Lookup by ZIP code
await runAction({
ActionName: 'Census Data Lookup',
Params: [{
Name: 'ZipCode',
Value: '10001'
}]
});

// Lookup by city and state
await runAction({
ActionName: 'Census Data Lookup',
Params: [{
Name: 'City',
Value: 'New York'
}, {
Name: 'State',
Value: 'NY'
}]
});

Hierarchy (view full)

Constructors

Properties

stateFIPSCodes: Record<string, string> = ...

Methods

  • Executes the action with the provided parameters.

    Parameters

    • params: RunActionParams<any>

      The action execution parameters including context

    Returns Promise<ActionResultSimple>

    Promise resolving to the action result