A Java implementation of the OriginStamp API. For endpoint documentation see OriginStamp Documentation.
For more information, please visit https://originstamp.com
Building and using the API client library requires:
- Java 1.7+
- Maven/Gradle
Releases are listed here.
For Maven, add the following sections to your pom.xml (replacing $LATEST_VERSION):
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.OriginStampTimestamping</groupId>
<artifactId>originstamp-client-java</artifactId>
<version>$LATEST_VERSION</version>
</dependency>
Add this dependency to your project's build file:
compile "com.originstamp:originstamp-client-java:$LATEST_VERSION"At first generate the JAR by executing:
mvn clean packageThen manually install the following JARs:
target/originstamp-client-java-$LATEST_VERSION.jartarget/lib/*.jar
Please follow the installation instruction and execute the following Java code:
import com.originstamp.api.client.*;
import com.originstamp.api.client.auth.*;
import com.originstamp.model.*;
import com.originstamp.api.TimestampApi;
import java.io.File;
import java.util.*;
public class ClientExample {
public static void main(String[] args) {
TimestampApi apiInstance = new TimestampApi();
String authorization = "authorization_example"; // String | A valid API key is essential for authorization to handle the request.
TimestampRequest timestampRequest = new TimestampRequest(); // TimestampRequest | DTO for the hash submission. Add all relevant information concerning your hash submission.
try {
DefaultOfTimestampResponse result = apiInstance.createTimestamp(authorization, timestampRequest);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling TimestampApi#createTimestamp");
e.printStackTrace();
}
}
}All URIs are relative to https://api.originstamp.com
| Class | Method | HTTP request | Description |
|---|---|---|---|
| ApiKeyApi | getApiKeyUsage | GET /v3/api_key/usage | Usage |
| BulkApi | createBulkTimestamp | POST /v4/timestamp/bulk/create | Bulk Submission |
| BulkApi | getSeedStatus | GET /v4/timestamp/status/seed/{seed_id} | Seed Status |
| ProofApi | getProof | POST /v3/timestamp/proof/url | Proof |
| SchedulerApi | getActiveCurrencies | GET /v3/currencies/get | Get active currencies |
| TimestampApi | createTimestamp | POST /v4/timestamp/create | Submission |
| TimestampApi | getHashStatus | GET /v4/timestamp/{hash_string} | Status |
| TimestampApi | getSeedStatus | GET /v4/timestamp/status/seed/{seed_id} | Seed Status |
| WebhookApi | getWebhookStatus | POST /v3/webhook/information | Webhook |
| WebhookApi | registerWebhookNotification | POST /v3/webhook/register | Webhook |
| WebhookApi | triggerTimestampWebhook | POST /v3/webhook/start | Dev |
- CurrencyModel
- DefaultOfDownloadLinkResponse
- DefaultOfListOfCurrencyModel
- DefaultOfTimestampData
- DefaultOfTimestampResponse
- DefaultOfVoid
- DefaultOfWebhookResponse
- DefaultOfstring
- DefaultUsageResponse
- DownloadLinkResponse
- ManualWebhookRequest
- Notification
- ProofRequest
- TimestampBulkRequest
- TimestampData
- TimestampRequest
- TimestampResponse
- UsageResponse
- WebhookRequest
- WebhookResponse
Authentication schemes defined for the API:
- Type: API key
- API key parameter name: Authorization
- Location: HTTP header
It's recommended to create an instance of ApiClient per thread in a multithreaded environment to avoid any potential issues.
