All Collections
Tips & Tricks
Getting started with Timely’s API
Getting started with Timely’s API

How to connect Timely data with your stack

Lisa avatar
Written by Lisa
Updated over a week ago

Plans 💳 : Everyone

User Permissions 👥: Admins

Timely’s public API allows you to connect the data from Timely to applications you use in your tech stack that can't be natively integrated with Timely. Here's a quick guide for you, or anyone on your team, that wants to get to know more about the API. Have fun! 🎉

Browse this article to find out more about:


Getting started

To begin setup, please ensure you are an admin level user on the workspace.

Then to get started, go to Settings > Devs and add a name for your application. Then use your own redirect URL, or copy from the bottom of the screen, for your local tests. It'll look like this:

From there, use these details to find your authorization code by entering this URL in your browser window:

You’ll find both the client_id (application Id) and redirect_uri (callback url) in the details of the app you created in Settings > Devs.

Once you’ve confirmed and authorized, you’ll receive your authorization code which will be added to your request.

In your API client, enter the following information as a POST request: https://api.timelyapp.com/1.1/oauth/token

You’ll need to add form data for these fields to complete the request:

  • client_id (this is your application ID)

  • client_secret (this is your secret)

  • redirect_uri (this is your callback URL)

  • code (this is your authorization code generated by the URL with your redirect_uri and client_id)

  • grant_type (enter “authorization_code”)

Note: Make sure that there are no spaces or indents after any of the text you add in these fields otherwise the request will fail.

If your request was successful, the response from the server will have generated your access_token which is used in the header of every request you make to the server.

Now that you’ve created your app, you’re free to explore our API documentation and make requests of the API for the data you need.

Note: Keep in mind that you’ll need to type “Bearer” before your access token.


FAQs

Where can I find your API documentation?

Our documentation, including all the requests you can make via the API, is available here: https://dev.timelyapp.com/#introduction

Can I make API calls for Memory?

For security and privacy purposes, Memory is a private API so you won’t be able to make calls to retrieve memories or post information to your timeline.

How do I use the refresh token? Do I need to generate a new one for each request?

Timely's API token can be used for all API calls and can be used until a new token is generated.

Did this answer your question?