This repository has been archived by the owner on May 26, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Owen Voke edited this page Sep 24, 2019
·
5 revisions
The Arionum API project is a custom API endpoint for the Arionum blockchain.
The API should always be accessed over SSL.
The API uses restful verbs.
Verb | Description |
---|---|
GET |
Select one or more items. Success returns 200 status code. |
POST |
Create a new item. Success returns 201 status code. |
PUT |
Update an item. Success returns 200 status code. |
DELETE |
Delete an item. Success returns 200 or 204 status code. |
You'll need to send some headers when making API calls to identify your application, set the version and set the content type to JSON.
Header | Value |
---|---|
Content-Type |
application/json |
Some methods are paginated. Methods with 📄 Pagination will load 1 page of 15 items by default.
In these cases, append a query string like ?page={page}
to the URL to influence the results.