ArcGIS Feature Layer
Access and query public geospatial and tabular data from ArcGIS Feature Layers.
Custom Streaming + One-shot
Fetch records from a public ArcGIS feature layer query endpoint.
What you can ask Delphi
- “What are the locations and attributes of all public EV charging stations in San Francisco from the city's feature layer?”
- “Show me the air quality readings from monitoring stations in Los Angeles where the 'PM2.5' level is above 50, and include the station ID and timestamp.”
- “How many active construction permits for residential properties were issued in Austin, Texas last quarter, according to the public permit feature layer?”
- “List all reported potholes in the 'Downtown' neighborhood that are currently 'open' or 'in progress' from the city's public service request feature layer, and include their reported date.”
Technical details
Authentication ▾
Contact us for setup details.
Ingestion ▾
Mode: Streaming + One-shot
Tools exposed (2) ▾
arcgis/get_feature_layer_records
Fetch records from a public ArcGIS feature layer query endpoint.
schedule_arcgis_feature_layer_records
Create or update a recurring ArcGIS feature layer connector.
Inputs ▾
arcgis/get_feature_layer_records
| Name | Type | Required | Description |
|---|---|---|---|
| dashboardId | string | no | Target dashboard/initiative ID. Omit to use the current dashboard. |
| serviceUrl | string | yes | ArcGIS Feature Layer URL or query URL. |
| layerId | number | no | Optional layer id if serviceUrl points at a service root. |
| where | string | no | ArcGIS where clause. Defaults to '1=1'. |
| outFields | string[] | no | ArcGIS outFields list. Defaults to ['*']. |
| returnGeometry | boolean | no | Whether to include geometry. Defaults to true. |
| geometry | string | no | Optional ArcGIS geometry filter. |
| geometryType | string | no | Optional geometryType such as 'esriGeometryEnvelope'. |
| inSR | string | no | Optional input spatial reference. |
| outSR | string | no | Optional output spatial reference. |
| orderByFields | string[] | no | Optional ArcGIS orderByFields list. |
| limit | number | no | Max records to fetch. Default 500. |
| offset | number | no | Offset for one-shot pagination. Default 0. |
| objectIdField | string | no | Stable object id field after flattening. Defaults to 'OBJECTID'. |
| description | string | no | Human-readable description shown in the connector UI. |
| filter_paths | string[] | no | Optional glob paths to reduce the response. |
schedule_arcgis_feature_layer_records
| Name | Type | Required | Description |
|---|---|---|---|
| dashboardId | string | no | Target dashboard/initiative ID. Omit to use the current dashboard. |
| serviceUrl | string | yes | ArcGIS Feature Layer URL or query URL. |
| layerId | number | no | Optional layer id if serviceUrl points at a service root. |
| where | string | no | ArcGIS where clause. Defaults to '1=1'. |
| outFields | string[] | no | ArcGIS outFields list. Defaults to ['*']. |
| returnGeometry | boolean | no | Whether to include geometry. Defaults to true. |
| geometry | string | no | Optional ArcGIS geometry filter. |
| geometryType | string | no | Optional geometryType such as 'esriGeometryEnvelope'. |
| inSR | string | no | Optional input spatial reference. |
| outSR | string | no | Optional output spatial reference. |
| orderByFields | string[] | no | Optional ArcGIS orderByFields list. |
| limit | number | no | Max records to fetch. Default 500. |
| offset | number | no | Offset for one-shot pagination. Default 0. |
| objectIdField | string | no | Stable object id field after flattening. Defaults to 'OBJECTID'. |
| description | string | no | Human-readable description shown in the connector UI. |
| filter_paths | string[] | no | Optional glob paths to reduce the response. |
| polling_frequency | string | yes | How often to poll the ArcGIS feature layer. |
| connectorId | string | no | If provided, updates an existing connector. |