{"id":32187655,"url":"https://github.com/parenthesin/splashed","last_synced_at":"2026-06-25T13:31:19.392Z","repository":{"id":62434006,"uuid":"210497578","full_name":"parenthesin/splashed","owner":"parenthesin","description":"Clojure wrapper for the Unsplash API","archived":false,"fork":false,"pushed_at":"2019-11-10T22:24:27.000Z","size":39,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-05-26T09:43:39.998Z","etag":null,"topics":["api","clojure","unsplash","unsplash-api","unsplash-client"],"latest_commit_sha":null,"homepage":null,"language":"Clojure","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"epl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/parenthesin.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-09-24T02:49:27.000Z","updated_at":"2019-11-10T22:24:26.000Z","dependencies_parsed_at":"2022-11-01T21:01:39.302Z","dependency_job_id":null,"html_url":"https://github.com/parenthesin/splashed","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/parenthesin/splashed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parenthesin%2Fsplashed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parenthesin%2Fsplashed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parenthesin%2Fsplashed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parenthesin%2Fsplashed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/parenthesin","download_url":"https://codeload.github.com/parenthesin/splashed/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parenthesin%2Fsplashed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34778079,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-25T02:00:05.521Z","response_time":101,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","clojure","unsplash","unsplash-api","unsplash-client"],"created_at":"2025-10-22T00:09:55.076Z","updated_at":"2026-06-25T13:31:19.386Z","avatar_url":"https://github.com/parenthesin.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# splashed\nClojure wrapper for the Unsplash API\n=======\n\n[![Clojars Project](https://img.shields.io/clojars/v/org.parenthesin/splashed.svg)](https://clojars.org/org.parenthesin/splashed)\n\nClojure wrapper for the [Unsplash API](https://unsplash.com/documentation)\n\n## Setup\n\n - First you need to create a unsplash developer account and register an application, you can check [here](https://unsplash.com/documentation#creating-a-developer-account) for more information.\n\n - After you created your application you can get your access key [here](https://unsplash.com/oauth/applications/).\n\n - Add the following dependency to your project.clj file:\n\n```\n[org.parenthesin/splashed \"0.1.0\"]\n```\n\n## Usage\n\n```clojure\n(ns your.app.namespace.core\n  (:require [org.parenthesin.splashed.core :as splashed]))\n\n;; Bellow are some samples of how use this wrapper\n\n;; Get a single page from the list of all photos.\n(splashed/photos-list {} {:access-key \"YOUR-APP-ACCESS-KEY\"})\n\n;; Retrieve a single photo by id\n(splashed/photos-by-id \"tYnFSqELn54\" {:access-key \"YOUR-APP-ACCESS-KEY\"}\n\n;; Retrieve a single random photo, given optional filters.\n(splashed/photos-random {} {:access-key \"YOUR-APP-ACCESS-KEY\"})\n\n;; Retrieve total number of downloads, views and likes of a single photo by id, as well as the historical breakdown of these stats in a specific timeframe (default is 30 days).\n(splashed/photos-statistics-by-id \"tYnFSqELn54\" {} {:access-key \"YOUR-APP-ACCESS-KEY\"})\n\n;; To abide by the API guidelines, you need to trigger a GET request to this endpoint every time your application performs a download of a photo. \n(splashed/photos-download-by-id \"tYnFSqELn54\" {:access-key \"YOUR-APP-ACCESS-KEY\"})\n\n;; Get a single page of five photos results for a query.\n(splashed/search-photos {:query \"corgi\" :per-page 5 :page 1} {:access-key \"YOUR-APP-ACCESS-KEY\"})\n\n;; Get a single page of collection results for a query.\n(splashed/search-collections {:query \"corgi\"} {:access-key \"YOUR-APP-ACCESS-KEY\"})\n\n;; Get a single page of user results for a query.\n(splashed/search-users {:query \"rafael delboni\"} {:access-key \"YOUR-APP-ACCESS-KEY\"})\n\n;; Get a single page from the list of all collections.\n(splashed/collections-list {} {:access-key \"YOUR-APP-ACCESS-KEY\"})\n\n;; Get a single page from the list of featured collections with only 2 items per page.\n(splashed/collections-featured {:page 1 :per-page 2} {:access-key \"YOUR-APP-ACCESS-KEY\"})\n\n;; Retrieve a single collection by the collection id.\n(splashed/collections-by-id 1410291 {:access-key \"YOUR-APP-ACCESS-KEY\"})\n\n;; Retrieve a collection’s photos by the collection id\n(splashed/collections-photos-by-id 1410291 {:access-key \"YOUR-APP-ACCESS-KEY\"})\n\n;; Retrieve a list of collections related to this one id.\n(splashed/collections-related-by-id 1410291 {:access-key \"YOUR-APP-ACCESS-KEY\"})\n```\n\n## License\n\nCopyright © 2019 Parenthesin\n\nThis program and the accompanying materials are made available under the\nterms of the Eclipse Public License 2.0 which is available at\nhttp://www.eclipse.org/legal/epl-2.0.\n\nThis Source Code may also be made available under the following Secondary\nLicenses when the conditions for such availability set forth in the Eclipse\nPublic License, v. 2.0 are satisfied: GNU General Public License as published by\nthe Free Software Foundation, either version 2 of the License, or (at your\noption) any later version, with the GNU Classpath Exception which is available\nat https://www.gnu.org/software/classpath/license.html.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparenthesin%2Fsplashed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fparenthesin%2Fsplashed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparenthesin%2Fsplashed/lists"}