Start with 5000 API credits for free
logo

Facebook reels API

Returns reels from a facebook profile

Parameters

url - Facebook profile URL

type: string

count - Number of new reels

type: number

stream - Stream response

type: booleanDefault: false

Return type

reels

Examples

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

api = typedclient.connect('API_KEY')

async def main():
reels = await api.facebook.reels(
url="https://www.facebook.com/LeBron/",
count=10
)
print([(reel.likes) for reel in reels])

asyncio.run(main())