Adobe Acrobat Sign Base URIs API

Discovery of the correct regional api_access_point

Operations 2

GET /baseUris Discover the correct regional api_access_point for the authenticated account
POST /oauth/v2/token Exchange an OAuth 2.0 authorization code for an access token and refresh token

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/adobe-sign-base-uris-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

adobe-sign-base-uris-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Adobe Acrobat Sign REST Base URIs API
  version: '6'
  description: Adobe Acrobat Sign (formerly Adobe Sign / EchoSign) is a cloud-based electronic signature and document workflow service. The REST API v6 covers agreements, library templates, transient documents, workflows, widgets, megaSigns, users, groups, webhooks, and reports. Clients must call GET /baseUris first to discover the correct regional api_access_point (na1, na2, eu1, jp1, etc.) and use that host for subsequent calls. Authentication is OAuth 2.0 with scope modifiers (:self, :group, :account) that control the authorization level granted to the application.
  contact:
    name: Adobe Acrobat Sign Developer
    url: https://opensource.adobe.com/acrobat-sign/developer_guide/index.html
servers:
- url: https://api.{shard}.adobesign.com/api/rest/v6
  description: Region-specific Acrobat Sign REST API v6 base URL. Clients should call GET /baseUris on any shard first to obtain the correct api_access_point for the account.
  variables:
    shard:
      default: na1
      description: Region shard (na1, na2, eu1, jp1, etc.)
security:
- oauth2: []
tags:
- name: Base URIs
  description: Discovery of the correct regional api_access_point
paths:
  /baseUris:
    get:
      tags:
      - Base URIs
      summary: Discover the correct regional api_access_point for the authenticated account
      security: []
  /oauth/v2/token:
    post:
      tags:
      - Base URIs
      summary: Exchange an OAuth 2.0 authorization code for an access token and refresh token
      description: Hosted at the regional OAuth endpoint (for example https://secure.adobesign.com/oauth/v2/token). The authorization code is valid for 5 minutes; the returned access token expires in roughly 3600 seconds and the response includes the api_access_point to use for subsequent REST calls.
      security: []
components:
  securitySchemes:
    oauth2:
      type: oauth2
      description: OAuth 2.0 authorization-code flow. The authorization code is exchanged at POST /oauth/v2/token for an access token (~3600s) and a refresh token. Scope modifiers :self, :group, and :account determine the authorization level.
      flows:
        authorizationCode:
          authorizationUrl: https://secure.adobesign.com/public/oauth/v2
          tokenUrl: https://secure.adobesign.com/oauth/v2/token
          refreshUrl: https://secure.adobesign.com/oauth/v2/refresh
          scopes:
            agreement_read: Read agreements
            agreement_write: Create and modify agreements
            agreement_send: Send agreements for signature
            library_read: Read library templates
            library_write: Create and modify library templates
            user_login: Sign in as a user
            user_read: Read user information
            user_write: Modify users
            widget_read: Read widgets
            widget_write: Create and modify widgets
            workflow_read: Read workflows
            workflow_write: Create and modify workflows