unsplash-elixir alternatives and similar packages
Based on the "Third Party APIs" category.
Alternatively, view unsplash-elixir alternatives based on common mentions on social networks and blogs.
-
google-cloud
Elixir client libraries for accessing Google APIs. -
gringotts
A complete payment library for Elixir and Phoenix Framework -
statix
Fast and reliable Elixir client for StatsD-compatible servers -
MongoosePush
MongoosePush is a simple Elixir RESTful service allowing to send push notification via FCM and/or APNS. -
commerce_billing
A payment processing library for Elixir -
sendgrid
Create and send composable emails with Elixir and SendGrid. -
mailchimp
A basic Elixir wrapper for version 3 of the MailChimp API -
sparkpost
SparkPost client library for Elixir https://developers.sparkpost.com -
diplomat
Elixir library for interacting with Google's Cloud Datastore -
elixtagram
:camera: Instagram API client for the Elixir language (elixir-lang) -
forcex
Elixir library for the Force.com / Salesforce / SFDC REST API -
google_sheets
Elixir library for fetching Google Spreadsheet data in CSV format -
pay_pal
:money_with_wings: PayPal REST API client for the Elixir language (elixir-lang) -
amazon_product_advertising_client
An Amazon Product Advertising API client for Elixir -
cashier
Cashier is an Elixir library that aims to be an easy to use payment gateway, whilst offering the fault tolerance and scalability benefits of being built on top of Erlang/OTP -
elixir_ipfs_api
The Elixir library that is used to communicate with the IPFS REST endpoint. -
airbrake
An Elixir notifier to the Airbrake/Errbit. System-wide error reporting enriched with the information from Plug and Phoenix channels.
Learn Elixir in as little as 12 Weeks
Do you think we are missing an alternative of unsplash-elixir or a related project?
README
Unsplash

Unsplash API wrapper in Elixir.
Exmaple Usage
Unsplash.Photos.search(query: "Austin", catgeroy: "2") |> Enum.take(1)
Unsplash.Collections.all |> Enum.take(1)
- All API endpoints are supported. See the documentation for full list.
Each API call that is paginated returns a stream. You can resolve the stream by calling any Enum function, this way you don't have to think about pagination. For example to get one random photo: Unsplash.Photos.random |> Enum.take(1)
or to get 100 random photos: Unsplash.Photos.random |> Enum.take(100)
.
Configuration
See the secrets.exs
file on what configuration variables need to be configured.
Authorization
Get an auth code by directing a user to the url generated by this command (replace the scope with what you would like):
Unsplash.OAuth.authorize_url! scope: "public read_user write_user read_photos write_photos write_likes read_collections write_collections"
After the user grants access, she will be redirected back to your redirect_uri whith a code
query paramater, which you then set like this:
Unsplash.OAuth.authorize!(code: auth_code_from_the_callback)
Now every API call will use the access_code gerenated in the above step automatically.
Installation
Add unsplash to your list of dependencies in
mix.exs
:def deps do [{:unsplash, "~> 1.1.0"}] end
Ensure unsplash is started before your application:
def application do [applications: [:unsplash]] end