Hasta Backend
  1. user
  • lookup
    • Get localised seed data
      GET
    • Get core seed data
      GET
    • Get zodiac signs
      GET
    • Get subscription and pricing plans
      GET
    • Get FAQs
      GET
    • Get notification intervals
      GET
  • audit
    • Get audit logs
      GET
  • auth
    • Register device
      POST
    • Send OTP
      POST
    • Verify OTP and login
      POST
    • Resend OTP
      POST
    • Refresh access token
      POST
    • Logout
      POST
    • Google OAuth login
      POST
  • admin
    • Register admin account
    • Admin login
    • Admin logout
    • Refresh admin access token
    • Get admin profile
    • Update admin password
    • Edit language
    • Add language
    • Delete language
    • Delete user event logs
    • Clear lookup cache
    • Clear cache
  • blogs
    • Admin - get all blogs
    • Admin - delete a blog
    • Get all blogs
    • Get blog categories
    • Update blog status
    • Admin - send blog notification
    • Get blog details
    • Subscribe to blog notifications
    • Unsubscribe from blog notifications
  • feedback
    • Submit a user feedback
    • Get all queries
    • Update user query status
    • Get all reviews
    • Update review status
    • Get all featured reviews
  • events
    • Track a user event
    • Fetch all tracked events
  • notifications
    • Send broadcast notification
    • Send custom notification to a user
    • Fetch user notifications
    • Get unread notification count
    • Mark notification as read
  • reminders
    • Fetch user reminders
    • Create a reminder
    • Update a reminder
    • Delete a reminder
  • user
    • Create / complete user profile
      PUT
    • Get my profile
      GET
    • Update profile image
      PATCH
    • Update language preference
      PATCH
    • Update push notification preference
      PATCH
    • Get my family members
      GET
    • Add a family member
      POST
    • Delete a family member
      DELETE
    • Update family member profile image
      PATCH
    • Admin - list users
      GET
    • Admin - get user details with family
      GET
    • Admin - delete user and all family members
      DELETE
    • Create / complete user profile
      PUT
    • Admin - update user status
      PUT
  • palm
    • Get user palm reading
    • Upload user palm image
    • Upload family member palm image
    • Get family member palm reading
  • horoscopes
    • Get user kundali
    • Get family member kundali
    • Get horoscope (daily / weekly / monthly)
  • reports
    • Share a report via email
    • Get shared report PDF link
  • tarot
    • List all tarot cards
    • Get single tarot card by slug
    • Get today's daily tarot card
    • Get a 3-card tarot reading
    • Get tarot reading history
  • marriage
    • Generate marriage compatibility report
    • Get marriage compatibility report
  • child
    • Generate baby names or child timing
    • Like or unlike a suggested baby name
    • Get child naming or timing result
  • dashboard
    • Dashboard overview stats
    • User growth time-series
    • Subscription distribution by plan
    • Top-up & one-time sales distribution
    • Recent activity feed
  • Health
    • Liveness check
  1. user

Get my profile

GET
/api/v1/users/me
user
Last modified:2026-06-04 22:55:16
Request: No body - auth token only
Returns the authenticated user's full profile including birth details, language preference, notification setting, and image URLs. Requires a valid Bearer token.
Success: 200 - data contains user_key, email, full_name, date_of_birth, birth_time, birth_place, city, state, country, latitude, longitude, timezone, gender, language_code, profile_image_url, hand_image_url, is_onboarded, opt_push_notification, and current plan info (plan_name, plan_start_date, plan_end_date).
Errors: 401 - missing/invalid token | 404 - profile not found

Request

None

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/api/v1/users/me'

Responses

🟢200OK
application/json
Successful Response
Bodyapplication/json

Example
{
    "success": true,
    "message": "Profile fetched successfully",
    "data": {
        "user_key": "User-45231",
        "email": "nitin@example.com",
        "full_name": "Nitin Sharma",
        "date_of_birth": "1993-07-15",
        "birth_time": "06:30:00",
        "birth_place": "Delhi, India",
        "city": "Delhi",
        "state": "Delhi",
        "country": "India",
        "latitude": 28.6139,
        "longitude": 77.209,
        "timezone": "Asia/Kolkata",
        "gender": "M",
        "language_code": "en",
        "is_onboarded": true,
        "opt_push_notification": true,
        "plan_name": "Seeker",
        "plan_start_date": "2026-05-13T10:30:00Z"
    }
}
🟠401Unauthorized
🟠404Record Not Found
Modified at 2026-06-04 22:55:16
Previous
Create / complete user profile
Next
Update profile image
Built with