Skip to main content
GET
/
app
/
config
/
system-urls
Get system URLs configuration
curl --request GET \
  --url https://handauncle-backend-prod-205012263523.asia-south1.run.app/app/config/system-urls
{
  "success": true,
  "data": {
    "systemUrls": {
      "termsAndConditions": "https://www.handauncle.com/terms",
      "privacyPolicy": "https://www.handauncle.com/privacy",
      "faqs": "https://www.handauncle.com/faqs",
      "supportEmail": "hello@handauncle.com"
    }
  },
  "meta": {
    "requestId": "req_674e2f5b9d2c4e6f8a1b3c5d",
    "timestamp": "2025-12-10T14:33:45.789Z"
  }
}
Retrieve system URLs including terms and conditions, privacy policy, FAQs, and support email. This endpoint provides all the legal and support-related URLs that need to be displayed in the mobile app.

Use Cases

  • Display links in settings or about screens
  • Show legal documents when required
  • Provide support contact information
  • Ensure compliance with app store requirements

Response

Returns a systemUrls object containing:
  • termsAndConditions: URL to the terms and conditions page
  • privacyPolicy: URL to the privacy policy page
  • faqs: URL to the frequently asked questions page
  • supportEmail: Email address for customer support

Example

Request

cURL
curl -X GET 'https://api.handauncle.com/app/config/system-urls' \
  -H 'Accept: application/json'
JavaScript
const response = await fetch('https://api.handauncle.com/app/config/system-urls');
const { data } = await response.json();

// Use in your app
const termsUrl = data.systemUrls.termsAndConditions;
const privacyUrl = data.systemUrls.privacyPolicy;
const supportEmail = data.systemUrls.supportEmail;
Swift/iOS
let url = URL(string: "https://api.handauncle.com/app/config/system-urls")!
let (data, _) = try await URLSession.shared.data(from: url)
let response = try JSONDecoder().decode(ConfigResponse.self, from: data)

let termsURL = response.data.systemUrls.termsAndConditions

Response

{
  "success": true,
  "data": {
    "systemUrls": {
      "termsAndConditions": "https://www.handauncle.com/terms-and-conditions",
      "privacyPolicy": "https://www.handauncle.com/privacy-policy",
      "faqs": "https://www.handauncle.com/terms-and-conditions",
      "supportEmail": "hello@handauncle.com"
    }
  },
  "meta": {
    "timestamp": "2025-12-10T14:32:18.445Z",
    "request_id": "req_674e2f4a8c1b3d5e7f9a2b4c"
  }
}

See Also

Response

System URLs returned successfully.

success
enum<boolean>
required
Available options:
true
data
object
required
Example:
{
"systemUrls": {
"termsAndConditions": "https://www.handauncle.com/terms",
"privacyPolicy": "https://www.handauncle.com/privacy",
"faqs": "https://www.handauncle.com/faqs",
"supportEmail": "hello@handauncle.com"
}
}
meta
object
required