www.lunedata.io Open in urlscan Pro
34.234.52.18  Public Scan

Submitted URL: http://www.lunedata.io/
Effective URL: https://www.lunedata.io/
Submission: On September 12 via api from OM — Scanned from CA

Form analysis 0 forms found in the DOM

Text Content

 * Solutions
   
   
   SOLUTIONS
   
   Build the ultimate banking experience with the power of financial data
   enrichment.
   
         
   Transaction Data Enrichment
   →
   Money Management
   →
   Lune Insights
   →
   
 * Case Studies
   
   
   CASE STUDIES
   
   See how Lune helps leading companies across the region grow their business
   through the power of financial data enrichment.
   
         
   Alaan Pay
   →
   National Bank of Fujairah
   →
   
   View All Case Studies
   →
 * For Developers
 * Blog
 * About Us
   
   
   ABOUT US
   
   Get to know Lune: Explore our mission, gain valuable insights, or join our
   team.
   
         
   Company
   →
   Careers
   →
   Contact Us
   →
   Linkedin
 * Login / Sign up





TURN TRANSACTION
DATA INTO VALUABLE INSIGHTS


Get Started

We care about your data, and we'd use cookies only to improve your experience.
By using this website, you accept our Cookies Policy.

AcceptX


TRUSTED BY THE REGION’S LEADING BANKS & FINTECHS


Transaction Enrichment
Give Context and Insights to Raw Transaction Data
Our API adds relevant details to your user's transaction data, turning complex
data into clear spending insights. It's about making financial data readable for
users and helping your institution gain a deeper understanding of your users's
spending habits.
See Lune in Action
Key Features
Transaction Categorization
Make sense of your users’ spending effortlessly. We classify transactions into
intuitive, easy-to-understand categories.

Sub-Categorization
We go a step further with sub-categories, giving users a closer look at the
specifics of each transaction.
Brand Name
No more guesswork. We directly link transactions to the correct brand names,
providing an additional layer of understanding about your users’ spending
preferences.
Brand Logo
Enhance transactions with visuals. We add high-quality logos to transactions,
making it easier and quicker to identify brands visually.


Carbon Footprint
Sustainability Insights for Every Transaction
We provide carbon footprint estimates for each of our transactions, promoting a
sustainable financial approach. Emphasize your dedication to a more sustainable
future and work hand-in-hand with your customers to emphasize a sustainable
financial approach
Explore More
PDF Enrichment
Leverage Alternative Data Sources
Leverage Lune’s technology to extract and categorize third-party data, gaining
valuable insights into various transaction types such as transportation,
transfers, and more. This enables a comprehensive understanding of spending
patterns and financial habits.
Money Management
Help Your Users Gain Full Control of Their Financials
Provide your users with the tools they need for in-app budgeting, expense
tracking, and saving. It's not just about managing spending – it's about helping
your users achieve financial freedom.
Explore More
User Engagement
Elevate User Engagement with Smart Nudges
Unlock the power of Smart Nudges to boost user engagement and cross-selling.
Drive personalized and timely interactions to keep your users informed,
motivated, and engaged on their journey.
Explore More
Lune Insights
In-depth Analytics on Your User’s Spending Habits
Gain a competitive edge with a plug & play analytics dashboard. It offers
comprehensive insights into your users’ spending patterns, providing you with
real-time data-driven decision-making.
Explore More
Gain insights on:
 * Information about your users
 * Spend per transaction type
 * Categories
 * Cashflow

4,2,17534



BACKED BY


Build Future-Proof Fintechs & Digital Banks, with Lune
High Accuracy
Experience unparalleled precision in transaction data enrichment and merchant
categorization.
Works in Real-Time
See transaction data enriched within seconds of a transaction occurring. No
waiting, just real-time insights.
Build Customer Loyalty
Enhance user trust and loyalty by providing full control and transparency over
their transaction data.
User-Centric
Leverage essential insights and tools to create a product that is centered
around your user’s specific needs.
Easy Integration
Leverage our easy-to-use plug & play API, and gain access to enriched data
within days, not weeks.
Bank-Grade Security
Secure all transaction insights with bank-grade TLS encryption technology,
ensuring security and privacy.



1
2
High Accuracy
Experience unparalleled precision in transaction data enrichment and merchant
categorization.
Works in Real-Time
See transaction data enriched within seconds of a transaction occurring. No
waiting, just real-time insights.
Build Customer Loyalty
Enhance user trust and loyalty by providing full control and transparency over
their transaction data.
User-Centric
Leverage essential insights and tools to create a product that is centered
around your user’s specific needs.
Easy Integration
Leverage our easy-to-use plug & play API, and gain access to enriched data
within days, not weeks.
Bank-Grade Security
Secure all transaction insights with bank-grade TLS encryption technology,
ensuring security and privacy.
Python
Node.js
Java
C++
Go


import requests
import json

url = "https://api.lunedata.io/api/v1/transaction/enrich/"

payload = json.dumps({
  "raw_description": "ENOC SZR, 2231 ld4",
  "amount": 120
})
headers = {
  'Authorization': 'Token --YOUR Token--',
  'Content-Type': 'application/json'
}

response = requests.request("POST", url, headers=headers, data=payload)

print(response.text)


Copy


var axios = require('axios');
var data = JSON.stringify({
  "raw_description": "ENOC SZR, 2231 ld4",
  "amount": 120
});

var config = {
  method: 'post',
  url: 'https://api.lunedata.io/api/v1/transaction/enrich/',
  headers: { 
    'Authorization': 'Token --YOUR Token--', 
    'Content-Type': 'application/json'
  },
  data : data
};

axios(config)
.then(function (response) {
  console.log(JSON.stringify(response.data));
})
.catch(function (error) {
  console.log(error);
});


Copy


OkHttpClient client = new OkHttpClient().newBuilder()
  .build();
  
MediaType mediaType = MediaType.parse("application/json");

RequestBody body = RequestBody.create(mediaType,"{\n  \"raw_description\": \"ENOC SZR, 2231 ld4\",\n  \"amount\": 120\n}");

Request request = new Request.Builder()
  .url("https://api.lunedata.io/api/v1/transaction/enrich/")
  .method("POST", body)
  .addHeader("Authorization", "Token --YOUR Token--")
  .addHeader("Content-Type", "application/json")
  .build();
  
Response response = client.newCall(request).execute();



Copy


CURL *curl;
CURLcode res;
curl = curl_easy_init();
if(curl) {
  curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "POST");
  curl_easy_setopt(curl, CURLOPT_URL, "https://api.lunedata.io/api/v1/transaction/enrich/");
  curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
  curl_easy_setopt(curl, CURLOPT_DEFAULT_PROTOCOL, "https");
  struct curl_slist *headers = NULL;
  headers = curl_slist_append(headers, "Authorization: Token --YOUR Token--");
  headers = curl_slist_append(headers, "Content-Type: application/json");
  curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
  const char *data = "{\n  \"raw_description\": \"ENOC SZR, 2231 ld4\",\n  \"amount\": 120\n}";
  curl_easy_setopt(curl, CURLOPT_POSTFIELDS, data);
  res = curl_easy_perform(curl);
}
curl_easy_cleanup(curl);


Copy


package main

import (
  "fmt"
  "strings"
  "net/http"
  "io/ioutil"
)

func main() {

  url := "https://api.lunedata.io/api/v1/transaction/enrich/"
  method := "POST"

  payload := strings.NewReader(`{
  "raw_description": "ENOC SZR, 2231 ld4",
  "amount": 120
}`)

  client := &http.Client {
  }
  req, err := http.NewRequest(method, url, payload)

  if err != nil {
    fmt.Println(err)
    return
  }
  req.Header.Add("Authorization", "Token --YOUR Token--")
  req.Header.Add("Content-Type", "application/json")

  res, err := client.Do(req)
  if err != nil {
    fmt.Println(err)
    return
  }
  defer res.Body.Close()

  body, err := ioutil.ReadAll(res.Body)
  if err != nil {
    fmt.Println(err)
    return
  }
  fmt.Println(string(body))
}


Copy

Built by Developers For Developers
Start your journey with a single, easy integration that powers all your
financial products. Get started in minutes and instantly test functionalities in
our sandbox environment, making your development process seamless and
interconnected.

See Documentation
Products
Transaction Data Enrichment
Money Management
Lune Insights
For Developers
Transaction Data Enrichment
Insights Dashboard
PFM SDK
About Us
Company
Careers
Contact Us
FAQ
Legal
Privacy Policy
Terms
Blog
News
Get Started
South Zone, Gate Avenue - Unit 156 - Level 1 - DIFC - Dubai
All Rights Reserved


We care about your data, and we'd use cookies only to improve your experience.
By using this website, you accept our Cookies Policy.
Accept


Close Cookie Popup

giItT1WQy@!-/#giItT1WQy@!-/#giItT1WQy@!-/#giItT1WQy@!-/#