Skip to content

Instantly share code, notes, and snippets.

@JulienGadanho
JulienGadanho / linkFinder.class.php
Last active August 21, 2024 19:20
LinkFinder API PHP Class
<?php
//for an other language, convert with chatGPT
class LinkFinderAPI {
private $apiKey;
private $baseUrl = 'https://app.link-finder.net/api/v2/';
public function __construct($apiKey) {
$this->apiKey = $apiKey;