Skip to main content

Prerequisites

Before you begin, you’ll need:
  1. An API key — Contact support@acreblitz.com or visit acreblitz.com/contact to get one
  2. A GeoJSON field boundary — Polygon or MultiPolygon in EPSG:4326 (WGS84)
  3. Product EPA numbers — Registration numbers for products in the tank mix

Step 1: Set Your Auth Header

All requests require the X-API-Key header:

Step 2: Make Your First ESA Check

Send a POST request to the /api/v1/esa-check endpoint with your application data.

Step 3: Handle the Response

The response tells you whether ESA compliance is required and provides a portal URL if it is. The first thing to check is the esa_required field. If none of the products in the tank mix have ESA obligations, the API returns early with esa_required: false — no field record is created, no PULA analysis is performed, and no portal URL is generated.
Example Response — No ESA Required
When esa_required is true, the full PULA analysis is performed and the response includes a field_id, application_event_id, and a mitigation_portal_url.
Example Response — ESA Required

Step 4: Direct Users to the Portal

When mitigations_required is true, direct your user to the mitigation_portal_url. You can:
  • Embed the link in your application UI
  • Send it via email to the applicator or grower
  • Open it in a new tab from your platform
The portal URL is valid for 1 year and provides a fully branded experience where your user can:
  • View detailed PULA information and field maps
  • Select required mitigation practices
  • Review soil and weather data
  • Download branded compliance reports

Step 5: Download Reports (Optional)

After an ESA check, you can programmatically download compliance reports:
Download Enlist Report
Download Runoff Report
The provider_field_id in the report URL is the provider_field_id you submitted to /esa-check. If you didn’t provide one, it defaults to the application_id.

Next Steps

ESA Check Reference

Full endpoint reference with all parameters and response fields

Report Endpoints

Programmatic report download reference