Quickstart

This guide will get you all set up and ready to use the typeauth API. We'll cover how to get started using our REST API and how to make your first API request. We'll also look at where to go next to find all the information you need to take full advantage of our powerful REST API.

Choose your client

At the moment typeauth supports REST API, we are developing client library for Typescript, Javascript and Golang. But we have boilerplates languages to interact with the API.

# cURL is most likely already installed on your machine
curl --version

Making your first API request

You are ready to make your first call to the typeauth API. Below, you can see how to send a GET request to the Applications endpoint to get a list of all your applications. In the cURL example, results are limited to hundred applications, the default page length for each client.

GET
/:accountID/applications
curl -G https://api.typeauth.com/:accountID/applications \
  -H "Authorization: Bearer {token}" \

What's next?

Great, you're now set up with the REST API and have made your first request to the API. Here are a few links that might be handy as you venture further into the typeauth API:

Was this page helpful?