Skip to main content

Quickstart

This guide walks you through making your first API request to the Turris Public API.

Prerequisites

Before you begin, you’ll need:
  1. An active Turris account with API access enabled
  2. API credentials (OAuth client or Restricted Access Token)
Don’t have credentials yet? Create them in your Turris Dashboard under Settings → API.

Step 1: Get Your Credentials

  1. Go to Settings → API in your Turris dashboard
  2. Click Create API Client
  3. Save your client_id and client_secret securely

Option B: Restricted Access Token

  1. Go to Settings → API in your Turris dashboard
  2. Click Create Restricted Access Token
  3. Configure your allowed IP addresses
  4. Save your token securely

Step 2: Authenticate

Step 3: Make Your First Request

Retrieve your downstream entity associations:
curl -X GET "https://public.api.live.turrisfi.com/v1/downstream-entity-associations" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Step 4: Explore the API

Now that you’re authenticated, explore what you can do:

Next Steps