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 ATS API call. Let’s list candidates from the connected applicant tracking system:

Example Response

Next Steps

Get Candidate

Retrieve details for a specific candidate

List Jobs

Get open positions from the ATS

Pagination

Handle large result sets efficiently

Applications

View candidate applications

References