LogoLogo
API Reference
API Reference
  • API OVERVIEW
    • Getting Started with the Apono API
    • API Authentication
  • New Endpoints
  • APONO
    • Groups
    • Access Flows
    • Bundles
    • Connectors
    • Users
    • Integrations
    • Access Sessions
    • Available Access
    • Access Requests
    • Access Bundles
    • Identities
    • Activity
    • Access Scopes
Powered by GitBook
On this page
  • Overview
  • Getting Started
  • Authentication
  • Base URL
  • Headers
  • Support
  • Next Steps

Was this helpful?

Export as PDF
  1. API OVERVIEW

Getting Started with the Apono API

Overview

Welcome to the Apono Public API reference! This guide will help you start integrating Apono into your workflows. Using the API, you can easily create Access Flows, add Integrations, create and manage access requests, export activity logs, and more.

Getting Started

All API requests are made over HTTPS and must be authenticated. Responses are returned in JSON format.

Authentication

Apono’s API uses token-based authentication. To authenticate, include the following header in each request:

Authorization: Bearer <your-api-token>

If authentication is not provided or fails, a 401 "Unauthorized" response will be returned.

HTTP/1.1 401 Unauthorized

{
    "status": "401",
    "code": "Unauthorized"
}

You can create and manage your API tokens on the API Tokens page of your Apono app or user portal. Refer to API Authentication for step-by-step instructions on generating your API tokens.

Base URL

All requests should be made to the following base URL:

https://api.apono.io/api/

Headers

Include the following headers with all API calls:

Content-Type: application/json
Authorization: Bearer <your-api-token>

Support

Need help? Reach out to us at support@apono.io

Next Steps

  • Generate an API Token

  • Explore the Full API Reference

NextAPI Authentication

Last updated 5 days ago

Was this helpful?

Reference Integration-Specific Configuration Metadata