Archer Daniels Midland Products API

ADM food ingredients and product catalog

Operations 1

GET /products Archer Daniels Midland List Products #

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-products-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-products-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Archer Daniels Midland Commodity Data Commodities Products 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: Products
  description: ADM food ingredients and product catalog
paths:
  /products:
    get:
      operationId: listProducts
      summary: Archer Daniels Midland List Products
      description: Retrieve a list of ADM processed food ingredients and agricultural products with specifications and nutritional data.
      tags:
      - Products
      parameters:
      - name: category
        in: query
        description: Filter by product category
        schema:
          type: string
          enum:
          - starches
          - proteins
          - oils
          - sweeteners
          - fibers
          - flavors
        example: proteins
      - name: application
        in: query
        description: Filter by application area
        schema:
          type: string
        example: bakery
      responses:
        '200':
          description: List of products
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProductList'
              examples:
                ListProducts200Example:
                  summary: Default listProducts 200 response
                  x-microcks-default: true
                  value:
                    products:
                    - id: SOY-PROTEIN-CONC-001
                      name: Soy Protein Concentrate
                      category: proteins
                      applications:
                      - meat-analogs
                      - dairy-alternatives
                      protein: 70.0
                    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
    ProductList:
      type: object
      properties:
        products:
          type: array
          items:
            $ref: '#/components/schemas/Product'
        count:
          type: integer
          description: Total product count
          example: 250
    Product:
      type: object
      properties:
        id:
          type: string
          description: Product identifier
          example: SOY-PROTEIN-CONC-001
        name:
          type: string
          description: Product name
          example: Soy Protein Concentrate
        category:
          type: string
          description: Product category
          enum:
          - starches
          - proteins
          - oils
          - sweeteners
          - fibers
          - flavors
          example: proteins
        applications:
          type: array
          items:
            type: string
          description: Food and beverage application areas
          example:
          - meat-analogs
          - dairy-alternatives
        protein:
          type: number
          description: Protein content percentage
          example: 70.0
        description:
          type: string
          description: Product description
          example: High-quality soy protein concentrate for food applications
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-ADM-API-Key
      description: ADM API key for partner integrations