Archer Daniels Midland Locations API

ADM global facility and processing plant locations

Operations 1

GET /locations Archer Daniels Midland List Locations #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/archer-daniels-midland-locations-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

archer-daniels-midland-locations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Archer Daniels Midland Commodity Data Commodities Locations API
  description: The Archer Daniels Midland (ADM) Commodity Data API provides access to agricultural commodity pricing, supply chain logistics, and product information for ADM partner integrations. ADM is a Fortune 100 global leader in agricultural processing and food ingredient manufacturing.
  version: '1.0'
  x-generated-from: documentation
  contact:
    name: ADM
    url: https://www.adm.com/en-us/
servers:
- url: https://api.adm.com/v1
  description: ADM API Production
security:
- apiKey: []
tags:
- name: Locations
  description: ADM global facility and processing plant locations
paths:
  /locations:
    get:
      operationId: listLocations
      summary: Archer Daniels Midland List Locations
      description: Retrieve a list of ADM processing facilities, grain elevators, and distribution centers with location and capability details.
      tags:
      - Locations
      parameters:
      - name: country
        in: query
        description: Filter by country code (ISO 3166-1 alpha-2)
        schema:
          type: string
        example: US
      - name: type
        in: query
        description: Filter by facility type
        schema:
          type: string
          enum:
          - processing-plant
          - grain-elevator
          - distribution-center
          - port
        example: processing-plant
      responses:
        '200':
          description: List of locations
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LocationList'
              examples:
                ListLocations200Example:
                  summary: Default listLocations 200 response
                  x-microcks-default: true
                  value:
                    locations:
                    - id: ADM-DEC-001
                      name: Decatur Processing Complex
                      type: processing-plant
                      country: US
                      state: IL
                      city: Decatur
                      latitude: 39.8403
                      longitude: -88.9548
                    count: 1
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
      - apiKey: []
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
          description: Error message
          example: Unauthorized
        code:
          type: integer
          description: Error code
          example: 401
    Location:
      type: object
      properties:
        id:
          type: string
          description: Location identifier
          example: ADM-DEC-001
        name:
          type: string
          description: Facility name
          example: Decatur Processing Complex
        type:
          type: string
          description: Facility type
          enum:
          - processing-plant
          - grain-elevator
          - distribution-center
          - port
          example: processing-plant
        country:
          type: string
          description: Country code (ISO 3166-1 alpha-2)
          example: US
        state:
          type: string
          description: State or region
          example: IL
        city:
          type: string
          description: City
          example: Decatur
        latitude:
          type: number
          description: Geographic latitude
          example: 39.8403
        longitude:
          type: number
          description: Geographic longitude
          example: -88.9548
    LocationList:
      type: object
      properties:
        locations:
          type: array
          items:
            $ref: '#/components/schemas/Location'
        count:
          type: integer
          description: Total location count
          example: 200
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-ADM-API-Key
      description: ADM API key for partner integrations