Pexels
Pexels API Client for https://www.pexels.com
Install / Use
/learn @kilhage/PexelsREADME
Pexels API Client
Install
Install the Pexels API Client with Composer.
"require": {
"glooby/pexels": "~0.1"
},
Usage
Create an instance of the Pexels API Client by passing in your API token as parameter.
$pexels = new \Glooby\Pexels\Client("xxxxx");
Perform a search, the response gets returned as an array
$response = $pexels->search('london');
Loop trough photos and display them
$photos = json_decode($pexels->search('london')->getBody())->photos;
foreach ($photos as $photo) {
echo "<img src='{$photo->src->small}' width='{$photo->width}' heigth='{$photo->height}'>"
}
Example response
{
"total_results":6,
"page":1,
"per_page":15,
"photos":[
{
"id":57456,
"width":4000,
"height":3000,
"url":"https://www.pexels.com/photo/brown-rocky-mountain-painting-57456/",
"photographer":"Pixabay",
"src":{
"original":"https://static.pexels.com/photos/57456/torres-del-paine-mountains-granite-granite-rock-57456.jpeg",
"large":"https://static.pexels.com/photos/57456/torres-del-paine-mountains-granite-granite-rock-57456-large.jpeg",
"medium":"https://static.pexels.com/photos/57456/torres-del-paine-mountains-granite-granite-rock-57456-medium.jpeg",
"small":"https://static.pexels.com/photos/57456/torres-del-paine-mountains-granite-granite-rock-57456-small.jpeg",
"portrait":"https://static.pexels.com/photos/57456/torres-del-paine-mountains-granite-granite-rock-57456-portrait.jpeg",
"square":"https://static.pexels.com/photos/57456/torres-del-paine-mountains-granite-granite-rock-57456-square.jpeg",
"landscape":"https://static.pexels.com/photos/57456/torres-del-paine-mountains-granite-granite-rock-57456-landscape.jpeg",
"tiny":"https://static.pexels.com/photos/57456/torres-del-paine-mountains-granite-granite-rock-57456-tiny.jpeg"
}
}
]
}
Related Skills
node-connect
342.0kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
84.7kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
342.0kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
84.7kCommit, push, and open a PR


