Created
January 31, 2021 21:05
-
-
Save lifenautjoe/9414810c5a85bfc9cd567f88b6dc7b99 to your computer and use it in GitHub Desktop.
Peekalink API Usage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
r = requests.post( | |
"https://api.peekalink.io/", | |
headers={"X-API-Key": "YourSecretKey"}, | |
data={"link": "https://bit.ly/3frD2OP"}, | |
) | |
print(r.json()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment