Hi @khalidmnabil,
This isn’t the best formulated question, take a look at
for tips for next time
Are you just missing "Bearer"
from your "Authorization"
header
You currently have
headers={"Authorization": "<Token>"}
But the docs suggest it should be
headers={"Authorization": "Bearer <Token>"}
You may also want to change your token since you’ve now made it public