Dropbox Sign Account API

The Account API from Dropbox Sign — 3 operation(s) for account.

Operations 4

POST /account/create Create a new account on Dropbox Sign #
GET /account Get the authenticated account #
PUT /account Update the authenticated account #
POST /account/verify Verify whether an email belongs to an existing account #

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/dropbox-sign-account-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

dropbox-sign-account-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Dropbox Sign Account API
  version: 3.0.0
  description: Best-effort OpenAPI for the Dropbox Sign (formerly HelloSign) v3 eSignature API covering accounts, API apps, bulk send jobs, embedded edit / sign URLs, and fax operations. Authoritative spec lives at https://github.com/hellosign/hellosign-openapi.
  contact:
    name: API Evangelist
    email: kin@apievangelist.com
    url: https://developers.hellosign.com/api/api-reference-welcome
servers:
- url: https://api.hellosign.com/v3
  description: Dropbox Sign v3 API
security:
- apiKey: []
- oauth2: []
tags:
- name: Account
paths:
  /account/create:
    post:
      tags:
      - Account
      summary: Create a new account on Dropbox Sign
      operationId: createAccount
      responses:
        '200':
          description: Account created
  /account:
    get:
      tags:
      - Account
      summary: Get the authenticated account
      operationId: getAccount
      responses:
        '200':
          description: Account details
    put:
      tags:
      - Account
      summary: Update the authenticated account
      operationId: updateAccount
      responses:
        '200':
          description: Account updated
  /account/verify:
    post:
      tags:
      - Account
      summary: Verify whether an email belongs to an existing account
      operationId: verifyAccount
      responses:
        '200':
          description: Verification result
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: basic
      description: Dropbox Sign API key used as Basic auth username with empty password
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://app.hellosign.com/oauth/authorize
          tokenUrl: https://app.hellosign.com/oauth/token
          scopes:
            basic_account_info: View basic account info
            account_access: Manage account
            signature_request_access: Manage signature requests
            template_access: Manage templates
            api_app_access: Manage API apps