Juno
Developer Portal

Juno Developer API

The Juno Developer API provides programmatic access to Juno's recruiting and team building ecosystem. Use it to manage companies, onboard team members, create job rankings, and evaluate candidates programmatically.

Base URL

https://api.usejuno.io/v1/developer

Quick Start

  1. Get API credentials - Go to Settings > Developer in your Juno dashboard to generate your API Key.
  2. Authenticate - Include your X-API-Key header in every request.
  3. Make requests - Call any endpoint to manage your recruiting data.

Example Request

curl -X GET "https://api.usejuno.io/v1/developer/rankings" \
  -H "X-API-Key: your_api_key_here"

Example Response

[
  {
    "id": "ranking_123",
    "jobTitle": "Senior Frontend Engineer",
    "jobDescription": "We are looking for...",
    "createdAt": "2023-10-27T10:00:00Z"
  }
]

Available Resources

ResourceDescription
CompaniesCreate companies and manage team bulk onboarding.
RankingsCreate job rankings and manage candidates.

Next Steps