Start with 5000 API credits for free

Installation

How to install and set up TypedAPI in your project.

Language Guide

TypedAPI works in your favorite web based language. Select language below for a step-by-step set up guide.

Minimum python version required is Python 3.3

1

Install typedclient
1
python3 -m pip install typedclient

2

Import

From a new or existing project import typedclient and pythons standard library asyncio to begin fetch data asynchronously.

1
2
3
import typedclient
import asyncio

3

Initialize the client

Provide your unique API key to connect and initialize typedclient. You can acquire an API key by signing up.

1
2
3
4
5
import typedclient
import asyncio

api = typedclient.connect('API_KEY')

4

Start using

You have completed the set up and can now start collecting data.

1
2
3
4
5
6
7
8
9
10
11
import typedclient
import asyncio

api = typedclient.connect('API_KEY')

async def main():
user = await api.instagram.user(username='therock')
print(user.id, user.followers)

asyncio.run(main())

Domains

Browse and search a available for data fetching with TypedAPI.

Next
Logging