import requests url = 'https://api-prod.usefini.com/v2/bots/links/public' token = "your_api_key_here" headers = { 'authorization': 'Bearer token', } data = { "links": [ link_1, link_2], "english": True, "baser": False } response = requests.post(url, json=data, headers=headers) print(response.json())
{ "message": "Request for links addition to bot sent successfully", }
This endpoint allows you to add links to your existing bot