Make API requests with Analyzer in Acrobat

Last updated on Aug 24, 2026

Determine the organization's regional API endpoint, authenticate your requests, and use the Analyzer in Acrobat APIs.

Before calling Analyzer APIs, resolve the API access point for the organization. Analyzer currently supports the NA1 and EU1 regions.

Before you begin

Complete Set up API access for Analyzer in Acrobat and have a valid OAuth Server-to-Server access token.

Determine the regional API endpoint

Analyzer uses the baseUris endpoint to identify the regional API access point for an organization.

The baseUris endpoint is available through NA1 only. Call the NA1 endpoint even if the organization is hosted in EU1.

Send an authenticated GET request to the Analyzer baseUris endpoint:

Read the apiAccessPoint value from the response.

The response identifies the regional API endpoint assigned to the organization.

{
"apiAccessPoint": "[regional Analyzer API endpoint]"
}

Use the returned apiAccessPoint as the base URL for subsequent Analyzer API requests.

Always resolve the organization's API access point through baseUris rather than hard-coding a regional endpoint.

Authenticate API requests

Pass the OAuth Server-to-Server access token in the Authorization header for each API request:

Authorization: Bearer <access_token>

Construct subsequent API requests using the apiAccessPoint returned by baseUris.

Use the API reference

Analyzer provides regional Swagger interfaces for exploring endpoints, parameters, request and response schemas, and supported operations.

Use the Swagger interface for the organization's region:

  • NA1: https://analyzer-na1.adobe.io/swagger-ui/index.html
  • EU1: https://analyzer-eu1.adobe.io/swagger-ui/index.html

Authorize the Swagger session with a valid OAuth Server-to-Server access token before testing authenticated endpoints.

Available API operations

Use the Analyzer APIs to:

  • Upload documents for processing.
  • Search and filter documents.
  • Retrieve document processing status.
  • Retrieve available attributes.
  • Retrieve extracted attribute values.

Refer to the regional Swagger interface for endpoint paths, parameters, request schemas, response schemas, and status codes.

Next step

If your integration needs to access Analyzer data for individual users, see Configure on-behalf access for Analyzer in Acrobat.