Start with 5000 API credits for free
logo

Facebook comments API

Returns comments from a facebook post

Parameters

url - Facebook post URL

type: string

stream - Stream response

type: booleanDefault: false

Return type

comments

Examples

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

api = typedclient.connect('API_KEY')

async def main():
comments = await api.facebook.comments(
url="https://www.facebook.com/verizon/videos/672295318190827/"
)
print([(comment.commentText) for comment in comments])

asyncio.run(main())