X profile API
Returns x profile information
Parameters
url - Profile URL
type: string
stream - Stream response
type: booleanDefault: false
Return type
profile
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(): profile = await api.x.profile( url="https://x.com/elonmusk" ) print([(profil.id) for profil in profile])
asyncio.run(main())