Skip to content
This repository has been archived by the owner on Oct 4, 2020. It is now read-only.

Latest commit

 

History

History
23 lines (14 loc) · 1.36 KB

getting-started.md

File metadata and controls

23 lines (14 loc) · 1.36 KB
title description
Getting Started
Public API Getting Started Guide

Getting Started

{% hint style="danger" %} All HTTP requests have to be sent with the Content-Type: application/json header. If the header is not present it will result in malformed responses or request rejections. {% endhint %}

This is the reference guide for the Public API. This API exposes all resources and data provided by an ARK Core node; and is the preferred way of interacting with the ARK network. Note that each node has its own internal blockchain and state, meaning it may have forked or be out of sync, causing queries to fail. Monitor your node by comparing it to different public nodes, such as the official explorer to ensure you are in sync.

If you have any problems or requests please open an issue.

Pagination

Requests that return multiple items will be paginated to 100 items by default. You can specify further pages with the ?page parameter. For some resources, you can also set a custom page size up to 100 with the ?limit parameter. Note that for technical reasons not all endpoints respect the ?limit parameter.

Public Testing Relay

If you are not running a relay yourself you can use https://api.ark.io/api/ to test API calls. Happy developing!