Fair API Pricing
No Surprise Fees
Secure Your Document Distribution and Management with a Signority API Plan
Getting Started
Quickstart
To run the Python sample code
1. Requires the requests library
2. Requires the pprint library
1. Within the .classpath file, change the following line:
<classpathentry kind=”lib” path=”<LOCATION>/Signority_API_JAVA/src/gson-2.8.5.jar”>
So that the <LOCATION> is the location that the project is located
2. Makes sure that the GSON jar is located in the src folder of the project, if not found, download the latest version and place the gson-X.X.X.jar in the src folder
C# setup
Curl setup coming soon
PHP Setup
JS setup
NodeJS setup
Testing
Signority offers a testing suite for APIs with a base request URL of:
https://test.signority.com/api
Most of the request endpoints listed in our reference are accessible through the testing server.
Click here to download the Postman tests
Authentication
Basic Authentication
API functionality is only available to authorized users. Currently, our requests require basic authentication. The section below will show the authentication in various languages. If you require further assistance, contact support@signority.com.
1. Using email and password:
requests."REQUEST_TYPE"("URL", auth=("EMAIL", "PASSWORD"))
or
Create a header with:header =
{
'email'="EMAIL"
'password'="PASSWORD"
}
2. Using API key:
requests."REQUEST_TYPE"("URL", auth=("API_KEY", ""))
or
Create a header with:header =
{
'email'="API_KEY"
'password'=""
}
Java authentication
C# authentication
Curl authentication coming soon
PHP authentication coming soon
JavaScript authentication coming soon
NodeJS authentication coming soon
Charging and Rate Limit
Signority API has a rate limit of 2 calls/sec and 7200 calls/hr.
The creation of signature requests is not free and requires a paid API plan. Please ensure that the plan supports the API features that are being used, for further questions or information, contact support@signority.com or check the plans page for more details.
If you would like to test out the API before purchasing a plan, see the Testing section.