Welcome to the Geocoding API Available endpoints: 1. GET /query/ Description: Reverse geocodes a latitude and longitude to an address. Parameters: - lat: Latitude (required) - lng: Longitude (required) - token: Authentication token (required) Example: /query/?lat=37.4220&lng=-122.0841&token=your_auth_token Response: JSON object containing: - street_address: Street number and name - state: State abbreviation - city: City name - zip: ZIP code (with suffix if available) 2. GET /ping Description: Simple ping endpoint for testing. Parameters: - text: Optional text to echo back Example: /ping?text=hello Response: Text "Pong" followed by the provided text Note: All requests require CORS headers and proper authentication.