Amazon Textract Expense Analysis API

Operations for analyzing expense documents.

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/amazon-textract-expense-analysis-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 email required.

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

OpenAPI Specification

amazon-textract-expense-analysis-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: Amazon Textract Async Operations Expense Analysis API
  description: Amazon Textract is a machine learning service that automatically extracts text, handwriting, and data from scanned documents, going beyond simple OCR to identify and extract data from forms and tables.
  version: '2018-06-27'
  contact:
    name: Kin Lane
    email: kin@apievangelist.com
    url: https://aws.amazon.com/textract/
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: https://textract.amazonaws.com
  description: Amazon Textract API endpoint
tags:
- name: Expense Analysis
  description: Operations for analyzing expense documents.
paths:
  /#AnalyzeExpense:
    post:
      operationId: AnalyzeExpense
      summary: Amazon Textract Analyze Expense
      description: Analyzes an input document for financially related relationships between text, returning information about expenses including vendor name, line items, and total amounts.
      requestBody:
        required: true
        content:
          application/x-amz-json-1.1:
            schema:
              type: object
              properties:
                Document:
                  type: object
                  properties:
                    Bytes:
                      type: string
                      format: byte
                    S3Object:
                      type: object
                      properties:
                        Bucket:
                          type: string
                        Name:
                          type: string
              required:
              - Document
      responses:
        '200':
          description: Expense analysis results.
          content:
            application/json:
              schema:
                type: object
                properties:
                  DocumentMetadata:
                    type: object
                  ExpenseDocuments:
                    type: array
                    items:
                      type: object
                      properties:
                        ExpenseIndex:
                          type: integer
                        SummaryFields:
                          type: array
                          items:
                            type: object
                        LineItemGroups:
                          type: array
                          items:
                            type: object
      tags:
      - Expense Analysis
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK