An open API service indexing awesome lists of open source software.

https://github.com/b3none/been-claimed

Detect whether a Google Maps listing has been claimed via their place ID
https://github.com/b3none/been-claimed

Last synced: 12 months ago
JSON representation

Detect whether a Google Maps listing has been claimed via their place ID

Awesome Lists containing this project

README

          

# BeenClaimed
Detect whether a Google Maps listing has been claimed.

# Author
[B3none](https://b3none.co.uk/) - Developer / Maintainer

# Example usage
```php
$beenClaimedClient = new BeenClaimedClient();
$claimedSite = $beenClaimedClient->loadById((string)$id);
$claimedSite->hasBeenClaimed();

$unclaimedSite = $beenClaimedClient->loadByMapsUrl((string)$mapsUrl);
$unclaimedSite->hasBeenClaimed();
```