arpit13 commited on
Commit
e953f35
·
verified ·
1 Parent(s): 328e180

Create financials.py

Browse files
Files changed (1) hide show
  1. financials.py +58 -0
financials.py ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ financials = {
2
+ "latest_valuation": "7.5 billion USD", # Updated valuation after Series F funding
3
+ "total_funding": "816 million USD",
4
+ "revenue_estimates": "250 million USD (2024)", # Adjusted as per context, if needed
5
+ "profit_loss": "Not disclosed",
6
+ "ebitda": "Positive",
7
+ "key_ratios": {
8
+ "p_e_ratio": "Not applicable",
9
+ "debt_to_equity": "Low"
10
+ },
11
+ "financial_growth": "20% YoY",
12
+ "razorpay_fy24_data": {
13
+ "revenue": {
14
+ "total": "INR 2,501.4 crore",
15
+ "growth": "9% YoY",
16
+ "contribution_from_payments": "80%-85%",
17
+ "contribution_from_software_subscriptions": "15%-20%",
18
+ "annual_revenue_in_usd": "$302M"
19
+ },
20
+ "profit": {
21
+ "total": "INR 34 crore",
22
+ "growth": "4.5X YoY"
23
+ },
24
+ "expenses": {
25
+ "total": "INR 2,454 crore",
26
+ "growth": "7% YoY",
27
+ "employee_expenses": "INR 611 crore",
28
+ "employee_expenses_percentage": "25% of total expenses"
29
+ },
30
+ "growth": {
31
+ "future_expectations": "50% YoY growth for the next 3-4 years",
32
+ "revenue_growth_drivers": [
33
+ "Deeper penetration of existing businesses",
34
+ "New product offerings"
35
+ ]
36
+ },
37
+ "international_expansion": {
38
+ "focus_area": "Southeast Asia"
39
+ },
40
+ "total_payment_volume": {
41
+ "annualized_tpv": "$180 billion"
42
+ },
43
+ "ipo_plans": {
44
+ "planned_ipo_year": "2026",
45
+ "target_revenue_by_2030": "$1 billion"
46
+ },
47
+ "headquarters": {
48
+ "relocation": "Moving from the US to India"
49
+ },
50
+ "valuation_details": {
51
+ "valuation_date": "December 2021",
52
+ "valuation": "$7.5 billion",
53
+ "funding_round": "Series F",
54
+ "amount_raised": "$375 million",
55
+ "co_led_by": ["Lone Pine Capital", "Alkeon Capital", "TCV"]
56
+ }
57
+ }
58
+ }