Get Started

  1. Create an Account
    Before you can start using the Global Account API, you need to create an account with iPeakoin. Go to the iPeakoin Developer Dashboard and sign up for an account.
  2. Get Your API Key
    Once you've signed up for an account, log in and navigate to the API Key section. Here, you'll find your API Key, which you'll need to authenticate your requests to the Global Account API.
  3. Make Your First Request
    Now that you have your API Key, you can make your first request to the Global Account API. The API provides a range of endpoints for managing your accounts, making payments, and retrieving transaction history.
  4. Authentication
    To authenticate your requests, add your API Key to the request header as follows:
    makefileCopy code Authorization: Bearer <YOUR_API_KEY>
  5. Retrieve Accounts
    To retrieve information about your accounts, use the GET /accounts endpoint. This will return a list of all your accounts, along with their balances and other details.
  6. Make Payments
    To make a payment from one of your accounts, use the POST /payments endpoint. You'll need to provide details about the payment, including the recipient's account information and the amount.
  7. Retrieve Transaction History
    To retrieve transaction history for one of your accounts, use the GET /accounts/{id}/transactions endpoint. This will return a list of all transactions for the specified account.