Skip to main content

Documentation Index

Fetch the complete documentation index at: https://kraken-sandbox.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Browse by product

Get started in seconds

package main

import (
  "fmt"
  "net/url"
  krakenapi "github.com/beldur/kraken-go-api-client"
)

func main() {
  api := krakenapi.New("API_KEY", "API_SECRET")
  args := url.Values{
    "pair":      {"XXBTZUSD"},
    "type":      {"buy"},
    "ordertype": {"limit"},
    "price":     {"50000"},
    "volume":    {"1.0"},
  }
  resp, err := api.AddOrder("XXBTZUSD", "buy", "limit", "1.0", args)
  fmt.Println(resp, err)
}

Kraken CLI

Need help integrating?

Help center

Browse our documentation and FAQs.

API status

Check real-time API health and performance.

Contact support

Open a ticket with the API support team.