Skip to main content
This guide walks you through making your first API request to retrieve data from a linked account.

Prerequisites

  1. API Key created in StackOne Dashboard and copied to a secure location
  2. Basic Authentication Setup - Learn how to properly authenticate with StackOne API using your API key
  3. Required provider integration enabled
  4. Account linked successfully
  5. (Optional) Use an SDK

Getting Account ID

Authentication: When using curl -u "$API_KEY:", encoding is handled automatically. When setting the Authorization header manually, base64 encode {api_key}:, your key followed by a colon. See Authentication for details.
  1. List your linked accounts to find the account ID:
  1. From the response, copy the id value for your desired provider account.
Filter by provider using the providers query parameter:

Making Your First Request

Now you’re ready to make your first LMS API call. Let’s list content from the connected learning management system:

Example Response

Next Steps

Get Content

Retrieve details for specific content

List Users

Get learners from the LMS

Pagination

Handle large result sets efficiently

Completions

View learning completions

References