Google Cloud Document AI Projects API

The Projects API from Google Cloud Document AI — 4 operation(s) for projects.

Operations 5

GET /projects/{projectId}/locations/{location}/processors Google Cloud Document AI List processors #
POST /projects/{projectId}/locations/{location}/processors Google Cloud Document AI Create a processor #
POST /projects/{projectId}/locations/{location}/processors/{processorId}:process Google Cloud Document AI Process a document #
POST /projects/{projectId}/locations/{location}/processors/{processorId}:batchProcess Google Cloud Document AI Batch process documents #
GET /projects/{projectId}/locations/{location}/processorTypes Google Cloud Document AI List processor types #

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/google-cloud-document-ai-projects-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

google-cloud-document-ai-projects-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Google Cloud Document AI Projects API
  description: Processes documents to extract structured data from unstructured and semi-structured content using machine learning.
  version: v1
  contact:
    name: Google Cloud
    url: https://cloud.google.com/document-ai
servers:
- url: https://documentai.googleapis.com/v1
tags:
- name: Projects
paths:
  /projects/{projectId}/locations/{location}/processors:
    get:
      operationId: listProcessors
      summary: Google Cloud Document AI List processors
      description: Lists all processors in the specified project and location.
      parameters:
      - name: projectId
        in: path
        required: true
        schema:
          type: string
      - name: location
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response with list of processors.
          content:
            application/json:
              schema:
                type: object
                properties:
                  processors:
                    type: array
                    items:
                      $ref: '#/components/schemas/Processor'
      tags:
      - Projects
    post:
      operationId: createProcessor
      summary: Google Cloud Document AI Create a processor
      description: Creates a new document processor.
      parameters:
      - name: projectId
        in: path
        required: true
        schema:
          type: string
      - name: location
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Processor'
      responses:
        '200':
          description: Successful processor creation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Processor'
      tags:
      - Projects
  /projects/{projectId}/locations/{location}/processors/{processorId}:process:
    post:
      operationId: processDocument
      summary: Google Cloud Document AI Process a document
      description: Processes a single document synchronously.
      parameters:
      - name: projectId
        in: path
        required: true
        schema:
          type: string
      - name: location
        in: path
        required: true
        schema:
          type: string
      - name: processorId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProcessRequest'
      responses:
        '200':
          description: Successful document processing response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProcessResponse'
      tags:
      - Projects
  /projects/{projectId}/locations/{location}/processors/{processorId}:batchProcess:
    post:
      operationId: batchProcessDocuments
      summary: Google Cloud Document AI Batch process documents
      description: Processes multiple documents asynchronously.
      parameters:
      - name: projectId
        in: path
        required: true
        schema:
          type: string
      - name: location
        in: path
        required: true
        schema:
          type: string
      - name: processorId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BatchProcessRequest'
      responses:
        '200':
          description: Long-running operation for batch processing.
          content:
            application/json:
              schema:
                type: object
                properties:
                  name:
                    type: string
                  done:
                    type: boolean
      tags:
      - Projects
  /projects/{projectId}/locations/{location}/processorTypes:
    get:
      operationId: listProcessorTypes
      summary: Google Cloud Document AI List processor types
      description: Lists available processor types.
      parameters:
      - name: projectId
        in: path
        required: true
        schema:
          type: string
      - name: location
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response with processor types.
          content:
            application/json:
              schema:
                type: object
                properties:
                  processorTypes:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                        type:
                          type: string
                        category:
                          type: string
      tags:
      - Projects
components:
  schemas:
    Document:
      type: object
      properties:
        mimeType:
          type: string
        text:
          type: string
        pages:
          type: array
          items:
            type: object
        entities:
          type: array
          items:
            type: object
            properties:
              type:
                type: string
              mentionText:
                type: string
              confidence:
                type: number
    Processor:
      type: object
      properties:
        name:
          type: string
        type:
          type: string
        displayName:
          type: string
        state:
          type: string
          enum:
          - STATE_UNSPECIFIED
          - ENABLED
          - DISABLED
          - CREATING
          - FAILED
          - DELETING
        defaultProcessorVersion:
          type: string
        createTime:
          type: string
    ProcessRequest:
      type: object
      properties:
        inlineDocument:
          $ref: '#/components/schemas/Document'
        rawDocument:
          type: object
          properties:
            content:
              type: string
            mimeType:
              type: string
        skipHumanReview:
          type: boolean
    BatchProcessRequest:
      type: object
      properties:
        inputDocuments:
          type: object
          properties:
            gcsDocuments:
              type: object
              properties:
                documents:
                  type: array
                  items:
                    type: object
                    properties:
                      gcsUri:
                        type: string
                      mimeType:
                        type: string
        documentOutputConfig:
          type: object
          properties:
            gcsOutputConfig:
              type: object
              properties:
                gcsUri:
                  type: string
        skipHumanReview:
          type: boolean
    ProcessResponse:
      type: object
      properties:
        document:
          $ref: '#/components/schemas/Document'
        humanReviewStatus:
          type: object