Archer Daniels Midland Commodities API

Agricultural commodity pricing and market data

Operations 2

GET /commodities Archer Daniels Midland List Commodities #
GET /commodities/{commodityId} Archer Daniels Midland Get Commodity #

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-commodities-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-commodities-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Archer Daniels Midland Commodity Data Commodities 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: Commodities
  description: Agricultural commodity pricing and market data
paths:
  /commodities:
    get:
      operationId: listCommodities
      summary: Archer Daniels Midland List Commodities
      description: Retrieve a list of agricultural commodities with current pricing, market trends, and availability information.
      tags:
      - Commodities
      parameters:
      - name: type
        in: query
        description: Filter by commodity type (corn, soybeans, wheat, canola, etc.)
        schema:
          type: string
          enum:
          - corn
          - soybeans
          - wheat
          - canola
          - sorghum
          - barley
        example: corn
      - name: region
        in: query
        description: Filter by sourcing region
        schema:
          type: string
        example: US-MIDWEST
      responses:
        '200':
          description: List of commodities with pricing data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommodityList'
              examples:
                ListCommodities200Example:
                  summary: Default listCommodities 200 response
                  x-microcks-default: true
                  value:
                    commodities:
                    - id: CORN-US
                      name: Yellow Corn
                      type: corn
                      currentPrice: 4.85
                      currency: USD
                      unit: bushel
                      priceDate: '2026-04-19'
                    count: 1
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
      - apiKey: []
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /commodities/{commodityId}:
    get:
      operationId: getCommodity
      summary: Archer Daniels Midland Get Commodity
      description: Retrieve detailed data for a specific agricultural commodity including price history.
      tags:
      - Commodities
      parameters:
      - name: commodityId
        in: path
        required: true
        description: Commodity identifier
        schema:
          type: string
        example: CORN-US
      responses:
        '200':
          description: Commodity details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommodityDetail'
              examples:
                GetCommodity200Example:
                  summary: Default getCommodity 200 response
                  x-microcks-default: true
                  value:
                    id: CORN-US
                    name: Yellow Corn
                    type: corn
                    currentPrice: 4.85
                    currency: USD
                    unit: bushel
                    priceDate: '2026-04-19'
                    weekHigh: 5.1
                    weekLow: 4.72
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Commodity not found
          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
    CommodityList:
      type: object
      properties:
        commodities:
          type: array
          items:
            $ref: '#/components/schemas/Commodity'
        count:
          type: integer
          description: Total commodity count
          example: 15
    Commodity:
      type: object
      properties:
        id:
          type: string
          description: Unique commodity identifier
          example: CORN-US
        name:
          type: string
          description: Commodity display name
          example: Yellow Corn
        type:
          type: string
          description: Commodity type
          enum:
          - corn
          - soybeans
          - wheat
          - canola
          - sorghum
          - barley
          example: corn
        currentPrice:
          type: number
          description: Current market price
          example: 4.85
        currency:
          type: string
          description: Price currency
          example: USD
        unit:
          type: string
          description: Price unit of measure
          example: bushel
        priceDate:
          type: string
          format: date
          description: Date of price quote
          example: '2026-04-19'
    CommodityDetail:
      allOf:
      - $ref: '#/components/schemas/Commodity'
      - type: object
        properties:
          weekHigh:
            type: number
            description: 52-week high price
            example: 5.1
          weekLow:
            type: number
            description: 52-week low price
            example: 4.72
          volume:
            type: integer
            description: Daily trading volume in bushels
            example: 125000000
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-ADM-API-Key
      description: ADM API key for partner integrations