ACTUM Developer API Documentation

Authentication

The API supports two authentication methods:

1. API Key Authentication

Include your API key in the request header:

X-API-Key: ak_your_api_key_here

2. OAuth 2.0

First, obtain an access token:

POST /oauth/token
{
  "grant_type": "client_credentials",
  "client_id": "your_client_id",
  "client_secret": "your_client_secret"
}

Then use the token in subsequent requests:

Authorization: Bearer your_access_token

API Endpoints

GET /api/v1/notaries/search

Search for available notaries

Parameters:

POST /api/v1/notaries/{id}/book

Book an appointment with a notary

Required fields:

POST /api/v1/verification/start

Start ID verification process

Required fields:

Rate Limits

Error Responses

{
  "error": "Error description",
  "code": "ERROR_CODE",
  "details": "Additional details if available"
}

Support

For API support, contact: api@actum.com