AgCore provides data and business services through an application programming interface (API). AgCore is intended to be the next-generation back-end for all DTN Agriculture systems.
Land Centric database - The AgCore data is literally built from the ground up. The API offers the unique ability to search for land within a given radius. You can find land surrounding your business or other points of interest.
Identify Crop locations - The AgCore data can show where crops are planted, including a 7-year history.
Who is Farming What, Where? - Not only can land be linked to crops, but also to the farm and farmers. The AgCore database differentiates between the land’s location and the farmer’s location.
Summarized data - View data that has already been summarized from the land level up to each Grower, Address and Operation.
This API caters to a wide range of users and applications, including:
Grain Elevators, Ethanol Plants, Crush Facilities and Feedlots can find growers and crops within their Draw Area
Marketers can:
Find Growers nearby and query the crops they grow
Find Growers with Grain Bins (On-Farm Storage)
Match their existing customers to the database
This interactive documentation will get you up to speed on setting up requests, understanding responses, and leveraging the DTN AgCore API for your needs.
A x-deprecated header will be added that indicates the date of removal for the endpoint.
To get started, all users need their own client ID and client secret. Please contact an account manager or the DTN sales team to obtain these. Then, review the Authentication section to learn how to request an API access token. Do not share or use others' API credentials, since doing so may compromise information security.
Starting off your journey with the the AgCore API couldn't be easier. We've provided a variety of options to suit your needs and comfort level: Interactive Documentation: Our interactive documentation is a great starting point. Simply navigate to the "Authentication" section, insert your credentials, and you'll obtain an access token behind the scenes. Then, explore the API endpoints described in the Endpoints section.
1. Interactive documentation: Navigate to the Authentication section on this page, insert credentials to obtain an access token, then explore the API endpoints described in the Endpoints section.
2. Postman collection: For a hands-on approach, consider downloading this Postman collection. Insert credentials and start testing the API in Postman's interactive application.
3. Writing code: Ready to start coding? Try the Python example below, replacing client_id and client_secret with proper credentials. This invokes the API endpoint with a GET request and prints the response.
import requests
# --- Obtain an API access token ---
authUrl = 'https://api.auth.dtn.com/v1/tokens/authorize'
body = {
'grant_type': 'client_credentials',
'client_id': '...insert your client id here...',
'client_secret': '...insert your client secret here...',
'audience': 'https://agcore.prd.ag.zones.dtn.com/api'
}
response = requests.post(authUrl, json=body)
access_token = response.json()['data']['access_token']
# --- Invoke the API ---
api_base_url = 'https://agcore-api.prd.ag.zones.dtn.com/api/v1/'
endpoint = 'land/addresses?state-code=mn&postal-code=55337&address-line=11400 Rupp Dr'
headers = {'Authorization': 'Bearer ' + access_token, 'Content-Type': 'application/json'}
response = requests.get(api_base_url + endpoint, headers=headers)
# --- Print the response ---
print(response.json())
Returns a list of field accessibility.
| fips-code required | string Example: fips-code=01001,01003,01019 A single fips code value or comma separated list of fips codes. |
[- {
- "fipsCode": "12345",
- "fieldAccessibility": 2,
- "fieldAccessibilityPercentage": 47.92,
- "predictionDate": "2023-05-21T00:00:00.000Z",
- "originationDate": "2023-05-21T00:00:00.000Z"
}
]Returns a list of irrigation needs.
| fips-code required | string Example: fips-code=01001,01003,01019 A single fips code value or comma separated list of fips codes. |
[- {
- "fipsCode": "12345",
- "irrigationDepth": 2,
- "plantAvailableWaterPercentage": 47.92,
- "predictionDate": "2023-05-21T00:00:00.000Z",
- "originationDate": "2023-05-21T00:00:00.000Z"
}
]Returns a list of spray suitabilities.
| fips-code required | string Example: fips-code=01001,01003,01019 A single fips code value or comma separated list of fips codes. |
[- {
- "fipsCode": "12345",
- "spraySuitability": 2,
- "spraySuitabilityPercentage": 47.92,
- "predictionDate": "2023-05-21T00:00:00.000Z",
- "originationDate": "2023-05-21T00:00:00.000Z"
}
]Returns a list of unit of measure codes and descriptions.
[- {
- "unitsOfMeasureId": 1,
- "description"": "solution"
}, - {
- "unitsOfMeasureId": 2,
- "description": "broadcast"
}
]Returns facility type ids and descriptions of a given Facility Type.
| facilityCode required | number Enum: 1 2 3 4 5 This field is the facility type id for facility objects. If one is entered one facility type object is returned. If not then all facility type objects are returned. |
[- {
- "facilityTypeId": 1,
- "description": "Grain elevator"
}
]Returns gender codes and descriptions of a given Gender Code
| genderCode required | number Enum: 1 2 3 4 5 This field is the Gender Code for Gender Code objects. If one is entered one gender code object is returned. If not then all gender code objects are returned. |
[- {
- "producerCode": 1,
- "description": "Female"
}
]Returns an irrigation ID object and its description type.
| irrigationId required | number Enum: 1 2 3 This field is the irrigation ID object code for irrigation types. If one is entered one irrigation code object is returned. If not then all irrigation code object types are returned. |
[- {
- "irrigationId": 1,
- "description": "Irrigated"
}
]Returns a livestock and crop data.
| lci-id | number Comma separated numerical list of one or more lci id/s one is searching for. |
| lci-type | string Comma separated string of one or more lci type/s one is searching for. |
[- {
- "lciId": 0,
- "lciDescription": "Temp Code",
- "lciType": "CRP",
- "unitOfMeasure": "CNT",
- "colorCode": null
}, - {
- "lciId": 16,
- "lciDescription": "Soybeans",
- "lciType": "CRP",
- "unitOfMeasure": "ACR",
- "colorCode": 267300
}
]Returns a livestock and crop data.
| lciId required | number This field is the numeric primary key for LCI objects. If one is entered one LCI object is returned. If not then all LCI objects are returned. |
[- {
- "lciId": 0,
- "lciDescription": "Temp Code",
- "lciType": "CRP",
- "unitOfMeasure": "DOL",
- "colorCode": 267300
}
]Returns a livestock and crop data.
[- {
- "lciId": 0,
- "lciType": "CRP",
- "lciDescription": "Temp Code",
- "unitOfMeasure": "ACR",
- "groupIndicator": "Y"
}, - {
- "lciId": 1,
- "lciType": "CRP",
- "lciDescription": "Field Corn",
- "unitOfMeasure": "ACR",
- "groupIndicator": "Y"
}
]Returns a livestock and crop data.
| lciGroupId required | number A numeric key to denote an LCI object's group. |
[- {
- "lciId": 0,
- "lciType": "CRP",
- "lciDescription": "Temp Code",
- "unitOfMeasure": "ACR",
- "groupIndicator": "Y"
}
]Returns link types and descriptions of a given Link Type
| linkType required | string Enum: "B" "L" "P" "H" "E" "S" This optional field is the Link Type for Link Type objects. If one is entered one link type object is returned. If not then all link type objects are returned. |
[- {
- "linkType": "P",
- "description": "Phone"
}
]Returns latLonAccuracy codes and descriptions of a given Location Accuracy Code
| locationAccuracyCode required | string Enum: "A" "I" "F" "G" "P" "R" "X" "" "5" "7" "9" This field is the latLonAccuracy Code for latLonAccuracy Code objects. If one is entered one latLonAccuracy code object is returned. If not then all latLonAccuracy code objects are returned. |
[- {
- "latLonAccuracy": "X",
- "description": "Approximate"
}
]Returns producer codes and descriptions of a given Producer Code.
| producerCode required | number Enum: 1 2 3 4 This field is the Producer Code for Producer Code objects. If one is entered one producer code object is returned. If not then all producer code objects are returned. |
[- {
- "producerCode": 1,
- "description": "Owner"
}
]Returns calendar years and descriptions of a given Season Code
| seasonCode required | string (seasonCode) Enum: "inseason" "predictive" "currentyear" "lastyear" This optional field is the season code for season objects. If one is entered one season object is returned. If not then all season objects are returned. |
[- {
- "calendarYear": 2019,
- "description": "Last Year"
}
]Returns a list of crops with the crop growth stage and date associated.
| fips-code required | string Example: fips-code=01003,01047,01019 A single fips code value or comma separated list of fips codes. |
[- {
- "fipsCode": "01003",
- "lciId": 16,
- "stage": "Planted",
- "percentile": 10,
- "predictionDate": "2023-05-04T00:00:00.000Z",
- "originationDate": "2023-10-24T00:00:00.000Z"
}, - {
- "fipsCode": "01003",
- "lciId": 16,
- "stage": "RA - Radicle Appearance",
- "percentile": 10,
- "predictionDate": "2023-05-09T00:00:00.000Z",
- "originationDate": "2023-10-24T00:00:00.000Z"
}
]Returns a list of facilities in a radius.
| lat required | number (latitude) [ -90 .. 90 ] Example: lat=39.9191954099076 latitude. |
| lon required | number (longitude) [ -180 .. 180 ] Example: lon=-73.899739925533 longitude. |
| radius required | number [ 1 .. 81000 ] The search radius in meters. |
[- {
- "distance": "13.12",
- "facilityId": 2903,
- "facilityTypeId": 1,
- "facilityTypeDesc": "Grain Elevator",
- "companyName": "EVEREST EXPRESS INC",
- "addressLine": "19898 HEXHAM WAY",
- "city": "AUSTIN",
- "stateCode": "st",
- "postalCode": "28320",
- "postalPlusFour": "6946",
- "fipsCode": "01001",
- "lat": 39.9191954099076,
- "lon": -73.899739925533,
- "grainBidFacilityId": 2472,
- "dateAdded": "2019-06-26T05:00:00.000Z",
- "h3Res8Index": "8828d642cdfffff",
- "lastUpdated": "2023-11-15T14:30:22.000Z",
- "country": "USA",
- "railAccess": true,
- "bargeAccess": false,
- "capacity": 50000,
- "capacityUom": 73
}
]Returns facility information associated with a facility ID.
| facilityId required | number >= 1 The primary key for facility objects.. |
[- {
- "facilityId": 2903,
- "facilityTypeId": 1,
- "companyName": "EVEREST EXPRESS INC",
- "addressLine": "19898 HEXHAM WAY",
- "city": "AUSTIN",
- "stateCode": "st",
- "postalCode": "28320",
- "postalPlusFour": "6946",
- "fipsCode": "01001",
- "lat": 39.9191954099076,
- "lon": -73.899739925533,
- "dateAdded": "2019-06-26T05:00:00.000Z",
- "h3Res8Index": "8828d642cdfffff",
- "lastUpdated": "2019-06-26T05:00:00.000Z",
- "country": "USA",
- "railAccess": false,
- "bargeAccess": true,
- "capacity": 124020,
- "capacityUom": "BU",
- "grainBinFacilityId": 2472
}
]Returns bin information associated with a bin ID.
| binId required | number The primary key for bin objects. |
{- "binId": 123245,
- "lat": 94.039,
- "lon": -122.3234,
- "bushels": 573.2,
- "landId": 123456
}Returns bin information associated with a list of bin IDs.
| bin-id | number >= 1 A comma separated list of grain bin-ids for a given search. |
DEPRECATED - body parameters will be removed from this endpoint September 1 2024. List of primary keys for bin objects.
| binIds required | Array of numbers[ items >= 1 ] |
{- "binIds": [
- 1
]
}[- {
- "binId": 123245,
- "lat": 94.039,
- "lon": -122.3234,
- "bushels": 573.2,
- "landId": 123456
}, - {
- "binId": 123232,
- "lat": 96.039,
- "lon": 22.86754,
- "bushels": 4322.1,
- "landId": 123456
}
]Returns bin information associated with geographic coordinates.
| lat required | number (latitude) [ -90 .. 90 ] Example: lat=39.9191954099076 latitude. |
| lon required | number (longitude) [ -180 .. 180 ] Example: lon=-73.899739925533 longitude. |
| radius required | number (radius) [ 1 .. 50000 ] The search radius in meters. |
[- {
- "binId": 123245,
- "lat": 94.039,
- "lon": -122.3234,
- "bushels": 573.2,
- "landId": 123456
}, - {
- "binId": 123232,
- "lat": 96.039,
- "lon": 22.86754,
- "bushels": 4322.1,
- "landId": 123456
}
]Returns all fips data, fips data for requested fips codes or fips data for one particular state. With or with out poly geom data, as per request.
| state-codes | string (stateCode) = 2 characters Example: state-codes=MN An optional list of two digit state codes delimited by comma, only available when fips-codes is not included. |
| fips-codes | number An optional comma separated list of fips codes, only available when state-code is not included. |
| poly-geom | boolean A boolean value if polyGeom data is required in the response. |
| limit | number The maximum response amount desired, if no limit all matching results will be returned. |
| offset | number The offset of the last previously returned pagination results. To be used with limit for pagination. |
{- "results": [
- {
- "fipsCode": "27001",
- "countyName": "Aitkin",
- "stateCode": "MN",
- "polyGeom": {
- "crs": {
- "type": "name",
- "properties": {
- "name": "EPSG:3857"
}
}, - "type": "MultiPolygon",
- "coordinates": [
- [
- [
- [
- -9469956.570871038,
- 3760777.9093726673
], - [
- -9474975.187479146,
- 3751164.760569398
], - [
- -9476802.051644254,
- 3734966.235942813
], - [
- -9476646.649634963,
- 3734316.572170302
], - [
- -9469956.570871038,
- 3760777.9093726673
]
]
]
]
}
}
], - "links": {
}, - "count": 40002
}Returns the abbreviation and name of each US state, territory, or military zone. Optionally returns boundary data -- to return boundary data, append '?poly-geom=true' to the route.
| state-code | string (stateCode) = 2 characters Example: state-code=MN An optional list of two digit state codes delimited by comma, only available when state-name is not included. |
| state-name | string Example: state-name=Alabama An optional list of state names delimited by comma, only available when state-code is not included. |
| poly-geom | boolean A boolean value if polyGeom data is required in the response. |
[- {
- "stateCode": "AL",
- "stateName": "Alabama",
- "polyGeom": {
- "crs": {
- "type": "name",
- "properties": {
- "name": "EPSG:3857"
}
}, - "type": "MultiPolygon",
- "coordinates": [
- [
- [
- [
- -9469956.570871038,
- 3760777.9093726673
], - [
- -9474975.187479146,
- 3751164.760569398
], - [
- -9476802.051644254,
- 3734966.235942813
], - [
- -9476646.649634963,
- 3734316.572170302
], - [
- -9469956.570871038,
- 3760777.9093726673
]
]
]
]
}
}
]Returns a list of land data and coordinates for the associated land object.
| land-id required | number >= 1 A comma separated list of land ids for a given search. |
[- {
- "type": "FeatureCollection",
- "features": [
- {
- "type": "Feature",
- "geometry": {
- "type": "MultiPolygon",
- "coordinates": [
- [
- [
- [
- -97.40233950610826,
- 40.1846997335485
], - [
- -97.40245128186692,
- 40.18455354808415
], - [
- -97.40255968406748,
- 40.1843834152757
], - [
- -97.40245799098696,
- 40.184267607416466
]
]
]
]
}, - "properties": {
- "landId": 22261,
- "zipCode": "68362",
- "fipsCode": "31169",
- "mtrs": "NE06T0030N0010W035",
- "acres": 19.78,
- "lat": 40.1850066946533,
- "lon": -97.4037874424801,
- "nameStatus": "Y",
- "cropStatus": "Y"
}
}
]
}
]Returns a list of land data and coordinates for the associated land object.
| landId required | number >= 1 The primary key for land objects. |
[- {
- "type": "FeatureCollection",
- "features": [
- {
- "type": "Feature",
- "geometry": {
- "type": "MultiPolygon",
- "coordinates": [
- [
- [
- [
- -97.40233950610826,
- 40.1846997335485
], - [
- -97.40245128186692,
- 40.18455354808415
], - [
- -97.40255968406748,
- 40.1843834152757
], - [
- -97.40245799098696,
- 40.184267607416466
]
]
]
]
}, - "properties": {
- "landId": 22261,
- "zipCode": "68362",
- "fipsCode": "31169",
- "mtrs": "NE06T0030N0010W035",
- "acres": 19.78,
- "lat": 40.1850066946533,
- "lon": -97.4037874424801,
- "nameStatus": "Y",
- "cropStatus": "Y"
}
}
]
}
]Returns a list of land data and coordinates for the associated party object.
| partyId required | number >= 1 The primary key for party objects. |
| show-all | boolean When passed as FALSE, it will filter by land only within the sustainable practices participating states. |
[- {
- "type": "FeatureCollection",
- "features": [
- {
- "type": "Feature",
- "geometry": {
- "type": "MultiPolygon",
- "coordinates": [
- [
- [
- [
- -78.2089150186391,
- 36.12920530292236
], - [
- -78.20848757678193,
- 36.1291982186231
], - [
- -78.20778537654333,
- 36.129187967906205
], - [
- -78.2081297540954,
- 36.12834556718965
], - [
- -78.20889816353584,
- 36.12835254701943
], - [
- -78.2089150186391,
- 36.12920530292236
]
]
]
]
}, - "properties": {
- "landId": 5499955,
- "partyId": 223344,
- "zipCode": "27549",
- "primary": "Party is not Primary",
- "producerCode": "2",
- "acres": 1.99,
- "crop": "Pasture/Grass Nonspecific,Forestry",
- "fipsCode": "37069",
- "county": "Franklin, NC",
- "lat": 36.1287723919986,
- "lon": -78.208433230773
}
}, - {
- "type": "Feature",
- "geometry": {
- "type": "MultiPolygon",
- "coordinates": [
- [
- [
- [
- -78.20841892950595,
- 36.1275277165233
], - [
- -78.20895620438081,
- 36.12752305926278
], - [
- -78.21169439925802,
- 36.12749926754745
], - [
- -78.2119384226869,
- 36.12749713808764
], - [
- -78.21254449670066,
- 36.12749186816804
], - [
- -78.21336736852865,
- 36.12748469408643
], - [
- -78.21429919710438,
- 36.128158365365536
], - [
- -78.21589645978193,
- 36.129313076555235
], - [
- -78.21450174876497,
- 36.12928919744176
], - [
- -78.21229245849612,
- 36.12924800897714
], - [
- -78.2092349318481,
- 36.12920862583432
], - [
- -78.2089150186391,
- 36.12920530292236
], - [
- -78.20889816353584,
- 36.12835254701943
], - [
- -78.2081297540954,
- 36.12834556718965
], - [
- -78.20778537654333,
- 36.129187967906205
], - [
- -78.20773047420516,
- 36.12918920158308
], - [
- -78.20841892950595,
- 36.1275277165233
]
]
]
]
}, - "properties": {
- "landId": 22261168,
- "partyId": 223344,
- "zipCode": "27549",
- "primary": "Party is not Primary",
- "producerCode": "2",
- "acres": 26.06,
- "crop": "Forestry",
- "fipsCode": "37069",
- "county": "Franklin, NC",
- "lat": 36.1283566559438,
- "lon": -78.2113932490003
}
}
]
}
]Returns a list of land data and coordinates for the associated party object.
| party-id required | number >= 1 A comma separated list of party ids for a given search. |
[- {
- "type": "FeatureCollection",
- "features": [
- {
- "type": "Feature",
- "geometry": {
- "type": "MultiPolygon",
- "coordinates": [
- [
- [
- [
- -78.2089150186391,
- 36.12920530292236
], - [
- -78.20848757678193,
- 36.1291982186231
], - [
- -78.20778537654333,
- 36.129187967906205
], - [
- -78.2081297540954,
- 36.12834556718965
], - [
- -78.20889816353584,
- 36.12835254701943
], - [
- -78.2089150186391,
- 36.12920530292236
]
]
]
]
}, - "properties": {
- "landId": 5499955,
- "partyId": 223344,
- "zipCode": "27549",
- "primary": "Party is not Primary",
- "producerCode": "2",
- "acres": 1.99,
- "crop": "Pasture/Grass Nonspecific,Forestry",
- "fipsCode": "37069",
- "county": "Franklin, NC",
- "lat": 36.1287723919986,
- "lon": -78.208433230773
}
}, - {
- "type": "Feature",
- "geometry": {
- "type": "MultiPolygon",
- "coordinates": [
- [
- [
- [
- -78.20841892950595,
- 36.1275277165233
], - [
- -78.20895620438081,
- 36.12752305926278
], - [
- -78.21169439925802,
- 36.12749926754745
], - [
- -78.2119384226869,
- 36.12749713808764
], - [
- -78.21254449670066,
- 36.12749186816804
], - [
- -78.21336736852865,
- 36.12748469408643
], - [
- -78.21429919710438,
- 36.128158365365536
], - [
- -78.21589645978193,
- 36.129313076555235
], - [
- -78.21450174876497,
- 36.12928919744176
], - [
- -78.21229245849612,
- 36.12924800897714
], - [
- -78.2092349318481,
- 36.12920862583432
], - [
- -78.2089150186391,
- 36.12920530292236
], - [
- -78.20889816353584,
- 36.12835254701943
], - [
- -78.2081297540954,
- 36.12834556718965
], - [
- -78.20778537654333,
- 36.129187967906205
], - [
- -78.20773047420516,
- 36.12918920158308
], - [
- -78.20841892950595,
- 36.1275277165233
]
]
]
]
}, - "properties": {
- "landId": 22261168,
- "partyId": 223344,
- "zipCode": "27549",
- "primary": "Party is not Primary",
- "producerCode": "2",
- "acres": 26.06,
- "crop": "Forestry",
- "fipsCode": "37069",
- "county": "Franklin, NC",
- "lat": 36.1283566559438,
- "lon": -78.2113932490003
}
}
]
}
]Provides two query methods for retreiving land information; fips code or lat, lon, and radius. You cannot provide both query methods in the same request.
| lat | number (latitude) [ -90 .. 90 ] Example: lat=39.9191954099076 Latitude (required with lon and radius). |
| lon | number (longitude) [ -180 .. 180 ] Example: lon=-73.899739925533 Longitude (required with lat and radius). |
| radius | number (radius) [ 1 .. 50000 ] The search radius in meters (required with lat and lon). |
| fips-code | string The fips code for the requested search area. |
| include-properties | string Flag for which geometric values to be included in the response. Must be of enum - "default", "geom", "poly-geom", "point-geom" |
| limit | number The maximum response amount desired, if no limit all matching results will be returned. |
| offset | number The offset of the last previously returned pagination results. To be used with limit for pagination. |
{- "results": [
- {
- "landId": 13773336,
- "lat": 42.9464981960873,
- "lon": -90.3273269859771,
- "acres": 19.77,
- "fipsCode": "55049",
- "zipCode": "53569",
- "mtrs": "WI46T0060N0010E036",
- "nameStatus": "Y",
- "cropStatus": "Y"
}
], - "links": {
}, - "count": 40002
}NOTE: This endpoint is defined but not yet implemented. Returns a carbon intensity score for the associated land with the provided FDCIC inputs, this endpoint accepts one FIPS code per request.
| fips-code required | string The FIPS code associated with the county in which the land resides. |
| acres required | number > 0 The number of acres on the land. Must be greater than 0. |
| crop required | string Enum: "Corn" "Soybeans" The crop harvested on the associated field. |
| tillage required | string Enum: "conventional" "reduced" "no till" The type of tillage used on the associated field. |
| cover-crop required | boolean Indicates whether the associated field was cover cropped. |
| harvest-year required | number Enum: 2024 2025 The year that the associated crop was harvested. |
| yield required | number > 0 The harvest yield of the associated crop (bu/ac). Must be greater than 0. |
| diesel required | number >= 0 Diesel used on the associated field (gal/ac). |
| gasoline required | number >= 0 Gasoline used on the associated field (gal/ac). |
| natural-gas required | number >= 0 Natural Gas used on the associated field (ft3/ac). |
| liquid-petroleum required | number >= 0 Liquid Petroleum used on the associated field (gal/ac). |
| electricity required | number >= 0 Electricity used on the associated field (kWh/ac). |
| EEF-NI-NStabilizer required | boolean Indicates whether an EEF, nitrification inhibitor, or N stabilizer was used on the associated field. |
| ammonia required | number >= 0 Total nitrogen applied on the associated farm using Ammonia fertilizers (lbs N/ac). |
| urea required | number >= 0 Total nitrogen applied on the associated farm using Urea fertilizers (lbs N/ac). |
| ammonium-nitrate required | number >= 0 Total nitrogen applied on the associated farm using Ammonium Nitrate fertilizers (lbs N/ac). |
| ammonium-sulphate required | number >= 0 Total nitrogen applied on the associated farm using Ammonium Sulphate fertilizers (lbs N/ac). |
| UAN required | number >= 0 Total nitrogen applied on the associated farm using UAN (Urea Ammonium Nitrate) fertilizers (lbs N/ac). |
| MAP-Nitrogen required | number >= 0 Total nitrogen applied on the associated farm using MAP (Monoammonium Phosphate) fertilizers (lbs N/ac). |
| DAP-Nitrogen required | number >= 0 Total nitrogen applied on the associated farm using DAP (Diammonium Phosphate) fertilizers (lbs N/ac). |
| MAP-Phosphorous required | number >= 0 Total phosphorous applied on the associated farm using MAP (Monoammonium Phosphate) fertilizers (lbs P/ac). |
| DAP-Phosphorous required | number >= 0 Total phosphorous applied on the associated farm using DAP (Diammonium Phosphate) fertilizers (lbs P/ac). |
| insecticide required | number >= 0 Total insecticide applied on the associated farm (g/ac). |
| herbicide required | number >= 0 Total herbicide applied on the associated farm (g/ac). |
| lime required | number >= 0 Total lime applied on the associated farm (lbs CaCO3/ac). |
| potash required | number >= 0 Total potash applied on the associated farm (lbs K2O/ac). |
| manure-use required | boolean Indicates whether manure was applied to the associated farm. |
| beef-manure required | number >= 0 Total beef manure applied on the associated farm (US tons/ac). |
| dairy-manure required | number >= 0 Total dairy manure applied on the associated farm (dry US tons/ac). |
| swine-manure required | number >= 0 Total swine manure applied on the associated farm (dry US tons/ac). |
| chicken-manure required | number >= 0 Total chicken manure applied on the associated farm (dry US tons/ac). |
Land-level FDCIC inputs.
| fipsCode required | string |
| acres required | number |
| crop required | string |
| tillage required | string |
| coverCrop required | boolean |
| cropYear | number |
| yield required | number |
| diesel required | number |
| gasoline required | number |
| naturalGas required | number |
| liquidPetroleum required | number |
| electricity required | number |
| EEFNINStabilizer required | boolean |
| ammonia required | number |
| urea required | number |
| ammoniumNitrate required | number |
| ammoniumSulphate required | number |
| UAN required | number |
| MAPNitrogen required | number |
| DAPNitrogen required | number |
| MAPPhosphorous required | number |
| DAPPhosphorous required | number |
| insecticide required | number |
| herbicide required | number |
| lime required | number |
| potash required | number |
| manureUse required | boolean |
| beefManure required | number |
| dairyManure required | number |
| swineManure required | number |
| chickenManure required | number |
{- "fipsCode": "470321",
- "acres": 17.00389,
- "crop": "Corn",
- "tillage": "Conventional",
- "coverCrop": true,
- "cropYear": 2024,
- "yield": 47.87842,
- "diesel": 7.221682554,
- "gasoline": 1.275964906,
- "naturalGas": 3.53759,
- "liquidPetroleum": 2.133721663,
- "electricity": 68.66462715,
- "EEFNINStabilizer": true,
- "ammonia": 179,
- "urea": 291,
- "ammoniumNitrate": 180,
- "ammoniumSulphate": 174,
- "UAN": 151,
- "MAPNitrogen": 93,
- "DAPNitrogen": 205,
- "MAPPhosphorous": 107,
- "DAPPhosphorous": 99,
- "insecticide": 6.49211707,
- "herbicide": 1353.240156,
- "lime": 573.0310878,
- "potash": 200,
- "manureUse": true,
- "beefManure": 11.167,
- "dairyManure": 15.4233,
- "swineManure": 10.113,
- "chickenManure": 2.577
}[- {
- "emissions": 37.28178080117015,
- "emissionsWithoutSOC": 30.142115081919663,
- "version": 1
}
]Returns a list of landIds and their calculated polyIntersection, areaIntersection, and percentIntersection
| limit | number The maximum response amount desired, if no limit all matching results will be returned. |
| offset | number The offset of the last previously returned pagination results. To be used with limit for pagination. |
| lci-ids | string A comma separated list of lci ids to filter the results by. |
The geoJson of an area to search for parties within this location.
| type | string Enum: "MultiPolygon" "Polygon" "Point" |
Array of numbers or Array of numbers An array of coordinates formatted as longitude, latitude |
{- "coordinates": [
- [
- [
- [
- -91.5,
- 35.5
], - [
- -91.5,
- 34.5
], - [
- -90.5,
- 34.5
], - [
- -90.5,
- 35.5
], - [
- -91.5,
- 35.5
]
]
]
], - "type": "Polygon"
}{- "results": [
- {
- "landId": 12345,
- "polyIntersection": {
- "crs": {
- "type": "name",
- "properties": {
- "name": "EPSG:3857"
}
}, - "type": "Polygon",
- "coordinates": [
- [
- [
- -9864171.36113513,
- 5108906.732777955
], - [
- -9864168.823523678,
- 5108952.793834173
], - [
- -9864245.228090312,
- 5108953.0638788175
], - [
- -9864245.799471568,
- 5108983.728001643
], - [
- -9864157.514403583,
- 5108983.680905241
], - [
- -9864159.227739893,
- 5109075.673889981
], - [
- -9864177.896894649,
- 5109075.323540152
], - [
- -9864177.713188272,
- 5109162.063284965
], - [
- -9864149.999999998,
- 5109162.586762582
], - [
- -9864149.999999998,
- 5108906.877149946
], - [
- -9864171.36113513,
- 5108906.732777955
]
]
]
}, - "areaIntersection": 46.2,
- "percentIntersection": 78.01
}
], - "links": {
- "previous": null
}, - "count": 40002
}Returns a list for parties that intersect with the polygons.
| lci-ids | string A comma-delimited list of LCI Ids. |
| count-only | boolean When passed, returns a number for all parties with intersected lands. |
The geoJson of an area to search for parties within this location.
| type | string Value: "MultiPolygon" |
Array of numbers or Array of numbers An array of coordinates formatted as longitude, latitude. |
{- "type": "MultiPolygon",
- "coordinates": [
- [
- [
- "-91.5 - 35.5",
- "-91.5 - 34.5",
- "-90.5 - 34.5",
- "-90.5 - 35.5",
- "-91.5 - 35.5"
]
]
]
}[- {
- "jobId": 1,
- "status": "PENDING"
}
]Returns land information associated with a landId.
| landId required | number >= 1 Primary key of the land objects. |
[- {
- "landId": 1557,
- "lat": 39.6960527097017,
- "lon": -90.6229765888456,
- "acres": 76.63,
- "fipsCode": "17171",
- "zipCode": "62621",
- "mtrs": "IL03T0150N0140W035",
- "nameStatus": "Y",
- "cropStatus": "Y",
- "irrigationType": "P",
- "irrigationAcres": 75.86
}
]Returns land data associated with the landId and from the search parameter associated with the given season code.
| landId required | number >= 1 The primary key for land objects. |
| season-code | string (seasonCode) Enum: "inseason" "predictive" "currentyear" "lastyear" The crop season code objects associated with the requested data. This parameter is optional and only one of year or season-code may be passed in. Not both. |
| year | number >= 1 The crop year associated with the requested data. This parameter is optional and only one of year or season-code may be passed in. Not both. |
| limit | number The maximum response amount desired, if no limit all matching results will be returned. |
| offset | number The offset of the last previously returned pagination results. To be used with limit for pagination. |
{- "results": [
- {
- "acres": 1.15,
- "landId": 19,
- "cropYear": 2022,
- "lciId": 16,
- "harvested": "2022-06-23T05:00:00.000Z",
- "planted": "2021-09-19T05:00:00.000Z"
}, - {
- "acres": 13.38,
- "landId": 1,
- "cropYear": 2021,
- "lciId": 1,
- "harvested": "2022-06-23T05:00:00.000Z",
- "planted": "2021-09-19T05:00:00.000Z"
}
], - "links": {
}, - "count": 553
}Returns a land's grainbin information associated with a landId.
| landId required | number >= 1 Primary key of the land objects. |
| year | number An array or singular year of data to be returned. If not provided then all available years data will be returned. |
[- {
- "binId": 745786,
- "lat": 39.5047266918936,
- "lon": -89.3122527347554,
- "bushels": 18122.29,
- "landId": 1398
}, - {
- "binId": 745784,
- "lat": 39.5048185305384,
- "lon": -89.3120787551586,
- "bushels": 13802.07,
- "landId": 1398
}
]Returns party link information associated with landId.
| landId required | number >= 1 Primary key for the land objects. |
| year | number An array or singular year of data to be returned. If not provided then all available years data will be returned. |
[- {
- "landId": 782783,
- "partyId": 1448207,
- "primaryFlag": true,
- "roleId": 2,
- "cropYear": 2023,
- "roleDescription": "Owner",
- "firstName": "Arthur",
- "lastName": "Reyes",
- "companyName": null
}, - {
- "landId": 782783,
- "partyId": 4871315,
- "primaryFlag": false,
- "roleId": 1,
- "cropYear": 2023,
- "roleDescription": "Other",
- "firstName": "Dan",
- "lastName": "Doe",
- "companyName": null
}, - {
- "landId": 782783,
- "partyId": 4869826,
- "primaryFlag": false,
- "roleId": 1,
- "cropYear": 2023,
- "roleDescription": "Operator",
- "firstName": "Jonathan",
- "lastName": "Emiliano",
- "companyName": null
}
]Returns a list of soil intersection data for the associated landId field.
| landId required | number >= 1 The primary key for land objects. |
[- {
- "landId": 12345,
- "mapUnitKey": 0,
- "totalAcres": 123.4,
- "affectedAcres": 12.3,
- "percentageCovered": 36.4,
- "kind": "Consociation",
- "description": "string",
- "floodCondition": "None",
- "drainingClass": "Moderately well drained",
- "nccpi3Corn": 0.123,
- "nccpi3Soy": 0.123,
- "nccpi3Cotton": 0.123,
- "nccpi3SmallGrains": 0.123,
- "nccpi3All": 0.123
}
]Returns a list of soil data for the associated landId field.
| landId required | number >= 1 The primary key for land objects. |
[- {
- "landId": 12345,
- "mapUnitKey": 0,
- "totalAcres": 123.4,
- "affectedAcres": 12.3,
- "percentageCovered": 36.4,
- "farmClass": 23,
- "farmDescription": 23,
- "kind": "Consociation",
- "description": "string",
- "floodCondition": "None",
- "floodDescription": "None",
- "drainingClass": 6,
- "drainingClassDescription": "Moderately well drained",
- "nccpi3Corn": 0.123,
- "nccpi3Soy": 0.123,
- "nccpi3Cotton": 0.123,
- "nccpi3SmallGrains": 0.123,
- "nccpi3All": 0.123
}
]Returns a list of land irrigation types.
| typeId required | number This field is the numeric primary key for irrigation types objects. If one is entered one irrigation type is returned. If not then all types are returned. |
[- {
- "id": 1,
- "shortName": "O",
- "description": "Other"
}
]Returns a list of fertilizer methods and descriptions.
[- {
- "fertilizerMethod": 1,
- "description"": "solution"
}, - {
- "fertilizerMethod": 2,
- "description": "broadcast"
}
]Returns a list of fertilizer types and descriptions.
[- {
- "fertilizerType": 1,
- "description": "Ammonium bicarbonate - 18% N"
}, - {
- "fertilizerType": 10,
- "description": "Diammonium phosphate - 18% N / 46% P2O5"
}
]Returns a list of land objects along with the data associated with each land object.
| land-id | number >= 1 A comma separated list of land ids for a given search. |
DEPRECATED - body parameters will be removed from this endpoint June 1 2024. List of primary keys for land objects.
| landIds required | Array of numbers[ items >= 1 ] |
{- "landIds": [
- 1
]
}[- {
- "landId": 1557,
- "lat": 39.6960527097017,
- "lon": -90.6229765888456,
- "acres": 76.63,
- "fipsCode": "17171",
- "zipCode": "62621",
- "mtrs": "IL03T0150N0140W035",
- "nameStatus": "Y",
- "cropStatus": "Y",
- "irrigationType": "P",
- "irrigationAcres": 75.86
}, - {
- "landId": 220394,
- "lat": 46.3662160718875,
- "lon": -119.972262019269,
- "acres": 14.4,
- "fipsCode": "53077",
- "zipCode": "98944",
- "mtrs": "WA33T0100N0230E008",
- "nameStatus": "Y",
- "cropStatus": "Y",
- "irrigationType": "S",
- "irrigationAcres": 14.4
}
]Returns a list of land data associated with the specified queries.
| lat required | number (latitude) [ -90 .. 90 ] Example: lat=39.9191954099076 latitude. |
| lon required | number (longitude) [ -180 .. 180 ] Example: lon=-73.899739925533 longitude. |
| radius required | number (radius) [ 1 .. 50000 ] The search radius in meters. |
[- {
- "landId": 25463883,
- "lat": 44.5385256966706,
- "lon": -87.7894892163482
}, - {
- "polyGeom": {
- "crs": {
- "type": "name",
- "properties": {
- "name": "EPSG:3857"
}
}, - "type": "MultiPolygon",
- "coordinates": [
- [
- [
- [
- -9469956.570871038,
- 3760777.9093726673
], - [
- -9474975.187479146,
- 3751164.760569398
], - [
- -9476802.051644254,
- 3734966.235942813
], - [
- -9476646.649634963,
- 3734316.572170302
], - [
- -9469956.570871038,
- 3760777.9093726673
]
]
]
]
}, - "acres": 3.57,
- "nameStatus": "N",
- "cropStatus": "N",
- "fipsCode": "55009",
- "zipCode": "54229",
- "lciId": "411",
- "colorCode": "ff6666",
- "cropAcres": 2.17,
- "mtrs": "WI46T0240N0220E023",
- "partyIds": [
- 11823232,
- 58881
]
}, - {
- "landId": 117,
- "lat": 30.6382474181844,
- "lon": -93.1657624882175
}, - {
- "polyGeom": {
- "crs": {
- "type": "name",
- "properties": {
- "name": "EPSG:3857"
}
}, - "type": "MultiPolygon",
- "coordinates": [
- [
- [
- [
- -9469956.570871038,
- 3760777.9093726673
], - [
- -9474975.187479146,
- 3751164.760569398
], - [
- -9476802.051644254,
- 3734966.235942813
], - [
- -9476646.649634963,
- 3734316.572170302
], - [
- -9469956.570871038,
- 3760777.9093726673
]
]
]
]
}
}, - {
- "pointGeom": {
- "crs": {
- "type": "name",
- "properties": {
- "name": "EPSG:3857"
}
}, - "type": "Point",
- "coordinates": [
- [
- [
- [
- -9469956.570871038,
- 3760777.9093726673
]
]
]
]
}, - "acres": 0.22,
- "nameStatus": "Y",
- "cropStatus": "N",
- "fipsCode": "22011",
- "zipCode": "70652",
- "lciId": "1",
- "colorCode": "ff4123",
- "cropAcres": 0.11,
- "mtrs": "LA18T0050S0080W010",
- "partyIds": [
- 779012,
- 44125
]
}
]Returns land residue data associated with landId.
| land-id required | number This field is the numeric primary key for residue objects. |
[- {
- "landId": 1,
- "reportingYear": 2017,
- "residue": 40.87
}
]Returns land tillage data associated with landId.
| land-id required | number This field is the numeric primary key for tillage objects. |
[- {
- "landId": 1,
- "reportingYear": 2017,
- "tillageType": 4
}
]| landId | string |
| crop-years | string Comma delimited list of crop years |
{- "results": [
- {
- "landId": 0,
- "cropYear": 0,
- "lciId": 0,
- "lciDescription": "string",
- "planted": "string",
- "fipsCode": "string",
- "area": 0,
- "yield": 0
}
], - "links": {
- "next": "string",
- "previous": "string"
}, - "count": 0
}Returns ETL update history for data tables, providing information about when tables were last updated, job status, and metadata.
Authentication Requirements:
This endpoint requires the agriculture.core.data.refresh:read scope in addition to standard authentication.
Examples:
?table-names=pseudo_farm_land_growth?table-names=pseudo_farm_land_growth,pseudo_farm_bin_inventory?table-names=pseudo_farm_land_growth,pseudo_farm_bin_inventory&schema-name=agcore?table-names=pseudo_farm_land_growth&max-days-old=30| table-names | string non-empty Example: table-names=pseudo_farm_land_growth,pseudo_farm_bin_inventory Filter by table name(s). Supports:
|
| schema-name | string non-empty Example: schema-name=agcore Filter by database schema name |
| max-days-old | integer [ 1 .. 3650 ] Example: max-days-old=30 Only show updates within the last X days (1-3650 days, default shows all) |
| status | string Example: status=SUCCESS,COMPLETED Filter by ETL job status. Can be a single status or comma-separated list. Valid values are COMPLETED, SUCCESS, FAILURE, PARTIAL, STARTED, SKIPPED. Defaults to SUCCESS,COMPLETED. |
[- {
- "schemaName": "agcore",
- "tableName": "land_growth_v2_2025",
- "partitionName": null,
- "lastUpdated": "2025-12-07T17:25:41.733Z",
- "status": "SUCCESS",
- "jobName": "airflow-manual__2025-12-07T16:32:29.740471+00:00",
- "daysSinceUpdate": 2,
- "tableMetadata": {
- "row_count": 95145153
}
}
]Returns a list of parties and their information associated with the latitude, longitude and radius parameters.
| lat required | number (latitude) [ -90 .. 90 ] Example: lat=39.9191954099076 latitude |
| lon required | number (longitude) [ -180 .. 180 ] Example: lon=-73.899739925533 longitude |
| radius required | number (radius) [ 1 .. 50000 ] The search radius in meters. |
| include-properties | string Comma delimited list of properties to include in response. By default only the partyId is returned. |
| limit | number The maximum response amount desired, if no limit all matching results will be returned. |
| offset | number The offset of the last previously returned pagination results. To be used with limit for pagination. |
{- "results": [
- {
- "partyId": 10565494,
- "primaryContact": true,
- "producerCode": 1,
- "companyName": "",
- "firstName": "DORLY",
- "middleInitial": "",
- "lastName": "LASKOSKIE",
- "suffix": "",
- "addressId": 12770803,
- "addressLine": "102 LOST PILOT LN",
- "city": "BOERNE",
- "stateCode": "TX",
- "postalCode": "78006",
- "postalPlusFour": "7715",
- "phone": "8305553371",
- "mobile": "5125553519",
- "email": "agcore+3651188@dtn.com",
- "fipsCode": "48259",
- "countyName": "Kendall",
- "dpvFlag": "Y",
- "genderCode": "F",
- "lat": 29.9251708984375,
- "lon": -98.77629852294922,
- "latLonAccuracy": "A"
}
], - "count": 24
}Returns standardized USPS address using the Redpoint API.
| address-line required | string A street address. |
| city | string A city name. |
| state-code | string (state-code) Enum: "CT" "WA" "GU" "AS" "MP" "PR" "VI" "ND" "MT" "ME" "WI" "VT" "ID" "MN" "PA" "IA" "NE" "RI" "NY" "MA" "IN" "NV" "CA" "OH" "DC" "DE" "IL" "WV" "SD" "MD" "KY" "KS" "VA" "NJ" "MO" "AZ" "TX" "OK" "NC" "TN" "NM" "AL" "OR" "NH" "LA" "UT" "GA" "HI" "AK" "WY" "SC" "AFA" "AFE" "AFP" "CO" "MS" "AR" "FL" "MI" "ct" "wa" "gu" "as" "mp" "pr" "vi" "nd" "mt" "me" "wi" "vt" "id" "mn" "pa" "ia" "ne" "ri" "ny" "ma" "in" "nv" "ca" "oh" "dc" "de" "il" "wv" "sd" "md" "ky" "ks" "va" "nj" "mo" "az" "tx" "ok" "nc" "tn" "nm" "al" "or" "nh" "la" "ut" "ga" "hi" "ak" "wy" "sc" "afa" "afe" "afp" "co" "ms" "ar" "fl" "mi" A US state code. |
| postal-code required | string A US postal code. |
[- {
- "address": "11400 RUPP DR",
- "carrierRoute": "C033",
- "city": "Burnsville",
- "congressionalDistrict": "02",
- "dpbc": "00",
- "dpbcCheck": "8",
- "dpvFlag": "Y",
- "dpvNostats": "N",
- "dpvVacant": "N",
- "dwellingType": "S",
- "fipsCode": "27037",
- "geoLevel": "A",
- "lat": 44.796981811523,
- "lon": -93.255783081055,
- "stateCode": "MN",
- "postalCode": "55337",
- "postalPlusFour": "1279"
}
]Returns a list of party address objects containing channels of contact including name, address, phone number and more.
| limit | number The maximum response amount desired, if no limit all matching results will be returned. |
| offset | number The offset of the last previously returned pagination results. To be used with limit for pagination. |
The geoJson of an area to search for parties within this location.
| type | string Enum: "MultiPolygon" "Polygon" |
| coordinates | Array of numbers[ items[ items[ items ] ] ] An array of coordinates formatted as longitude, latitude |
{- "coordinates": [
- [
- [
- [
- -91.5,
- 35.5
], - [
- -91.5,
- 34.5
], - [
- -90.5,
- 34.5
], - [
- -90.5,
- 35.5
], - [
- -91.5,
- 35.5
]
]
]
], - "type": "Polygon"
}[- {
- "partyId": 8817914,
- "addressId": 5781844,
- "operationId": 5781844,
- "linkType": "H",
- "producerCode": 1,
- "primaryContact": true,
- "personaId": 5,
- "personaDescription": "ROI Farmer",
- "firstName": "Jacob",
- "middleName": "O",
- "lastName": "Ainsworth",
- "suffix": null,
- "genderCode": "M",
- "companyName": null,
- "addressLine": "1904 Prairie St.",
- "city": "Rockford",
- "stateCode": "IL",
- "postalCode": "61080",
- "postalPlusFour": "0157",
- "dpvFlag": "Y",
- "dpvVacantFlag": "N",
- "doNotContactCode": null,
- "fipsCode": 17037,
- "countyName": "Winnebago",
- "lat": 41.76887893676758,
- "lon": -88.63790130615234,
- "latLonAccuracy": "P"
}
]Returns a confidence flag reference data.
| flagId required | number This field is the numeric primary key for confidence flags. If one is entered one flag object is returned. If not then all flag objects are returned. |
[- {
- "id": 7,
- "description": "Match on address and zip"
}
]Returns the binId for each grainbin object associated with the partyId object.
| partyId required | number >= 1 The primary key for party objects. |
[- {
- "partyId": 676674,
- "binId": 651904
}, - {
- "partyId": 676674,
- "binId": 1163568
}, - {
- "partyId": 676674,
- "binId": 646832
}
]Returns a list of partyId objects and binId objects where the binId for each grainbin object is associated with the requested partyId objects.
| party-id | number Comma separated number list of the primary keys for parties searched. |
DEPRECATED - body parameters will be removed from this endpoint June 1 2024. Please switch to query parameters. List of primary keys for party objects.
| partyId required | Array of numbers[ items >= 1 ] |
{- "partyId": [
- 1
]
}[- {
- "partyId": 676674,
- "binId": 651904
}, - {
- "partyId": 10232496,
- "binId": 33
}, - {
- "partyId": 3780090,
- "binId": 33
}
]Returns a list of parties and their information associated with the land inside the radius.
| lat required | number (latitude) [ -90 .. 90 ] Example: lat=39.9191954099076 latitude |
| lon required | number (longitude) [ -180 .. 180 ] Example: lon=-73.899739925533 longitude |
| radius required | number (radius) [ 1 .. 50000 ] The search radius in meters. |
[- {
- "partyId": 10565494,
- "companyName": "",
- "firstName": "DORLY",
- "lastName": "LASKOSKIE",
- "pointGeom": {
- "crs": {
- "type": "name",
- "properties": {
- "name": "EPSG:3857"
}
}, - "type": "Point",
- "coordinates": [
- -10908899.733890262,
- 5465029.622038781
]
}
}, - {
- "partyId": 1056532,
- "companyName": "",
- "firstName": "TERRIE",
- "lastName": "PERLANY",
- "pointGeom": {
- "crs": {
- "type": "name",
- "properties": {
- "name": "EPSG:3857"
}
}, - "type": "Point",
- "coordinates": [
- -10908899.733890262,
- 5465029.622038781
]
}
}
]Returns a list of party information associated with the name and fips code parameters.
| name required | string Example: name=James The first name, last name, or company name. |
| fips-code required | string (fipsCode) Example: fips-code=01001 Code which uniquely identified counties and county equivalents in the United States. |
[- {
- "partyId": 3800079,
- "primaryContact": true,
- "producerCode": 1,
- "companyName": "",
- "firstName": "RICHARD",
- "middleName": "G",
- "lastName": "LARSON",
- "suffix": "",
- "addressId": 1108595,
- "addressLine": "1560 330TH ST",
- "city": "BRANDON",
- "stateCode": "IA",
- "postalCode": "52210",
- "postalPlusFour": "9770",
- "phone": "3194742315",
- "mobile": "3194803038",
- "email": "aprilflower53@yahoo.com",
- "fipsCode": "19019",
- "countyName": "Buchanan",
- "dpvFlag": "Y",
- "genderCode": "M",
- "lat": 42.31193923950195,
- "lon": -91.97212219238281,
- "latLonAccuracy": "A"
}
]Returns address data and information associated with the associated addressId.
| addressId required | number >= 1 The primary key for address objects in the address table. |
[- {
- "addressId": 23345,
- "addressLine": "31 KNOLLWOOD AVE",
- "city": "MOUNT VERNON",
- "stateCode": "NY",
- "postalCode": "10550",
- "postalPlusFour": "4937",
- "fipsCode": "36119",
- "lat": 40.89495849609375,
- "lon": -73.82874298095703,
- "latLonAccuracy": "A"
}
]Returns a party object and the party information associated with the partyId.
| partyId required | number >= 1 The primary key for party objects. |
[- {
- "partyId": 33,
- "primaryContact": true,
- "producerCode": 2,
- "personaType": "Frugal Farmer",
- "companyName": "",
- "firstName": "GERALD",
- "middleName": "N",
- "lastName": "KADIS",
- "suffix": "",
- "addressId": 360549,
- "addressLine": "789 PINEY WOODS FARM RD",
- "city": "THOMASVILLE",
- "stateCode": "GA",
- "postalCode": "31757",
- "postalPlusFour": "0740",
- "phone": "2292268515",
- "mobile": "9122286585",
- "email": "GERALDKADIS@GMAIL.COM",
- "fipsCode": "13275",
- "countyName": "Thomas",
- "dpvFlag": "Y",
- "genderCode": "M",
- "lat": 30.91613006591797,
- "lon": -83.905029296875,
- "latLonAccuracy": "A"
}
]Returns a party consumer object associated with the partyId.
| partyId required | number >= 1 The primary key for party objects. |
[- {
- "partyId": 169782,
- "exactAge": 83,
- "birthMonth": 9,
- "birthDay": 14,
- "birthYear": 1939,
- "numberOfChildren": 0,
- "medianHouseholdIncome": 513,
- "numberOfAdults": 4,
- "generationsInHouseHold": 2,
- "inferredAge": 83,
- "matchType": "Match on first, last, address and zip",
- "maritalStatus": "Married",
- "education": "Completed College",
- "occupation": "Judge/Referee",
- "ethnicity": "French",
- "homeownerProbabilityModel": "Home Owner",
- "assimilationLevel": "Bilingual - English Primary",
- "ethnicGroup": "Western European",
- "ageRanges": "Between 80 and 89",
- "estimatedIncome": "Under $10,000",
- "netWorth": "$50,000 - $99,999",
- "communityCharities": false,
- "electronicsComputingAndHomeOffice": true,
- "numberOfPersonsInLivingUnit": 3,
- "onlinePurchasingIndicator": true,
- "electronicsComputersGrouping": false,
- "highTechLeader": false,
- "presenceOfChildren": false
}
]Returns the party object passed through the parameters along with every landId object associated with the partyId.
| partyId required | number >= 1 The primary key for party objects. |
[- {
- "partyId": 33,
- "landId": 1064014
}, - {
- "partyId": 33,
- "landId": 10334122
}, - {
- "partyId": 33,
- "landId": 12378404
}
]Returns a list of party objects and information associated with each party related to the last name and postal code request.
An object containing the search parameters.
| firstName | string |
| lastName | string |
| postalCode | string |
{- "firstName": "string",
- "lastName": "string",
- "postalCode": "string"
}[- {
- "partyId": 6347911,
- "primaryContact": true,
- "producerCode": 1,
- "companyName": "",
- "firstName": "TROY",
- "middleName": "",
- "lastName": "JOHNSON",
- "suffix": "",
- "addressId": 2689635,
- "addressLine": "17708 KINGSBURY CIR",
- "city": "LAKEVILLE",
- "stateCode": "MN",
- "postalCode": "55044",
- "postalPlusFour": "5219",
- "phone": "9528980638",
- "mobile": "6122805949",
- "email": "tjohnson@wilburellis.com",
- "fipsCode": "27037",
- "countyName": "Dakota",
- "dpvFlag": "Y",
- "genderCode": "M",
- "lat": 44.6922607421875,
- "lon": -93.30322265625,
- "latLonAccuracy": "A"
}
]Returns party data associated with a several fields using the Redpoint API.
Object containing Search Parameters.
| companyName | string |
| fullName | string |
| firstName | string |
| middleInitial | string |
| lastName | string |
| namesuffix | string |
| address | string |
| address2 | string |
| city | string |
| stateCode | string |
| zipCode | string |
| phone | string |
string |
{- "companyName": "string",
- "fullName": "string",
- "firstName": "string",
- "middleInitial": "string",
- "lastName": "string",
- "namesuffix": "string",
- "address": "string",
- "address2": "string",
- "city": "string",
- "stateCode": "string",
- "zipCode": "string",
- "phone": "string",
- "email": "string"
}{- "partyId": 5315772,
- "primaryContact": true,
- "producerCode": 2,
- "companyName": "A1 Farming",
- "firstName": "BOB",
- "middleName": "S",
- "lastName": "BELCHER",
- "suffix": "jr",
- "addressId": 3357517,
- "genderCode": "M"
}Returns party persona information associated with a partyId.
| partyId required | number >= 1 Primary key of the party objects. |
[- {
- "partyId": 10000
}, - {
- "predictivePersonaLastYear": "Frugal Farmer"
}, - {
- "predictivePersonaCurrentYear": "Frugal Farmer"
}
]Returns production information associated with a partyId, cropYear and a summaryLevel.
| party-id | number The primary key for party objects. |
| summary-level | string Enum: "A" "I" "O" "A" - Retrieves address summary data and "I" - Retrieves party summary data and "O" - Retrieves operations summary data. |
logicalCropYear (string) or numericCropYear (number) |
[- {
- "cropYear": 2018,
- "lciId": 412,
- "quantity": 1254,
- "partyId": 123245,
- "summaryLevel": "I"
}, - {
- "cropYear": 2018,
- "lciId": 412,
- "quantity": 1354,
- "partyId": 123245,
- "summaryLevel": "I"
}
]| fips-code | integer Fips code for the requested county. |
| state-code | integer Return all counties in state. |
| start-year required | integer Start year for requested harvest year. If none is supplied, use the most recent year. |
| end-year required | integer End year for requested harvest year. |
| lci-ids | Array of integers[ items >= 1 ] Lifecycle Inventory IDs for the requested data. |
{- "links": {
- "next": "string",
- "previous": "string"
}, - "count": 0,
- "results": [
- {
- "fipsCode": "string",
- "countyName": "string",
- "stateCode": "string",
- "harvestYear": 0,
- "lciId": 0,
- "yield": 0.1,
- "plantedArea": 0.1,
- "abandonedArea": 0.1,
- "production": 0.1,
- "abandonmentRatePercent": 0.1,
- "yieldUnitOfMeasureId": 0,
- "areaUnitOfMeasureId": 0,
- "productionUnitOfMeasureId": 0
}
]
}| state-code required | Array of strings[ items >= 1 ] State code for the requested county. |
| start-year required | integer Start year for requested harvest year. If none is supplied, use the most recent year. |
| end-year required | integer End year for requested harvest year. |
| lci-ids | Array of integers[ items >= 1 ] Lifecycle Inventory IDs for the requested data. |
{- "links": {
- "next": "string",
- "previous": "string"
}, - "count": 0,
- "results": [
- {
- "stateCode": "string",
- "harvestYear": 0,
- "lciId": 0,
- "yield": 0.1,
- "plantedArea": 0.1,
- "abandonedArea": 0.1,
- "production": 0.1,
- "abandonmentRatePercent": 0.1,
- "yieldUnitOfMeasureId": 0,
- "areaUnitOfMeasureId": 0,
- "productionUnitOfMeasureId": 0
}
]
}Returns data for the given jobId. Job data is cleaned up 24 hours after job completion.
| jobId required | integer The jobId of the request. |
{- "results": [
- {
- "partyId": 33,
- "addressId": 1482990,
- "producerCode": 1,
- "companyName": "Some company",
- "firstName": "Joe",
- "middleName": null,
- "lastName": "Company",
- "suffix": null,
- "address1": "123 Country Rd.",
- "city": "City",
- "stateCode": "IL",
- "postalCode": "61559",
- "zipCode4": "9583",
- "dpvFlag": "Y"
}
]
}