Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeregrine/mixpanel_data_client
https://github.com/jeregrine/mixpanel_data_client
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jeregrine/mixpanel_data_client
- Owner: jeregrine
- License: mit
- Created: 2015-02-27T21:32:59.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-29T21:26:44.000Z (over 9 years ago)
- Last Synced: 2024-08-10T10:58:00.506Z (3 months ago)
- Language: Elixir
- Size: 153 KB
- Stars: 4
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- freaking_awesome_elixir - Elixir - Client for interacting with the Mixpanel Data Export API. (Third Party APIs)
- fucking-awesome-elixir - mixpanel_data_client - Client for interacting with the Mixpanel Data Export API. (Third Party APIs)
- awesome-elixir - mixpanel_data_client - Client for interacting with the Mixpanel Data Export API. (Third Party APIs)
README
MixpanelDataClient
==================Client for interacting with the Mixpanel [Data Export API](https://mixpanel.com/docs/api-documentation/data-export-api)
```elixir
query_data = %{"event" => "signed_up",
"from_date" => "2011-08-07",
"to_date" => "2011-08-09"}
auth_data = {"key", "secret_key"}
MixpanelDataClient.fetch("segmentation", query_data, auth_data)
=> %{"data" => %{...}}
```