TrueWay Geocoding API

TrueWay Geocoding API

The Geocoding API provides developers with the capability to convert addresses into geographic coordinates (latitude and longitude) and vice versa.

API description

The Geocoding API is a service that provides forward and reverse geocoding of addresses.
Forward geocoding is the process of converting address into geographic coordinates(latitude,longitude).
Reverse geocoding is the process of converting geographic coordinates into a human-readable address.

Features and capabilities:

  • Global coverage
  • Forward Geocoding
  • Reverse Geocoding
  • Multi Language

Geocoding (Geocode)

Geocoding is the process of converting addresses (like “505 Howard St, San Francisco”) into geographic coordinates (latitude/longitude).
Required parameters:

  • address - The street address that you want to geocode.

Optional parameters:

  • language - The two-letter language code in which to return results (ISO 639-1).
  • bounds - Prefer results in a specified rectangular area(e.g. 37.786283,-122.395201,37.788394,-122.397344). Format: south,west,north,east. Coordinates: decimal degrees.
  • country - The two-letter bias country code (ccTLD or ISO 3166-1) in which to return results.

Reverse Geocoding (ReverseGeocode)

Reverse geocoding is the process of converting geographic coordinates(latitude/longitude) into a human-readable address (like “505 Howard St, San Francisco”).
Required parameters:

  • location - The location for which you wish to obtain the human-readable address (e.g. 37.7879493,-122.3961974).

Optional parameters:

  • language - The two-letter language code in which to return results (ISO 639-1).

Response

A geocoding result contains the following fields:

  • address
  • postal_code
  • country
  • region
  • area
  • locality
  • neighborhood
  • street
  • house
  • location (latitude/longitude)
  • location_type:
    • exact
    • approximate
    • centroid
  • type:
    • street_address
    • route
    • road_intersection
    • admin_area
    • country
    • region
    • area
    • locality
    • sublocality
    • neighborhood
    • building
    • postal_code

API Documentation

Endpoints


Obtain geocoordinates for address



                                                                            
GET https://www.zylalabs.com/api/3866/trueway+geocoding+api/4563/geocode
                                                                            
                                                                        

Geocode - Endpoint Features
Object Description
address [Required] The address that you want to geocode. For example: 505 Howard St, San Francisco
language [Optional] The two-letter language code in which to return results (ISO 639-1). For example: en
country [Optional] The two-letter country code (ccTLD or ISO 3166-1) in which to return results. For example: US
bounds [Optional] Bounding rectangle. Format: south,west,north,east. Coordinates: decimal degrees. For example: 37.786283,-122.395201,37.788394,-122.397344
Test Endpoint

API EXAMPLE RESPONSE

       
                                                                                                        
                                                                                                                                                                                                                            {
  "results": [
    {
      "address": "505 Howard St, San Francisco, CA 94105, USA",
      "postal_code": "94105",
      "country": "United States",
      "region": "California",
      "area": "San Francisco County",
      "locality": "San Francisco",
      "neighborhood": "The East Cut",
      "street": "Howard Street",
      "house": "505",
      "location": {
        "lat": 37.787926,
        "lng": -122.396187
      },
      "location_type": "exact",
      "type": "street_address"
    }
  ]
}
                                                                                                                                                                                                                    
                                                                                                    

Geocode - CODE SNIPPETS


curl --location --request GET 'https://zylalabs.com/api/3866/trueway+geocoding+api/4563/geocode?address=505 Howard St, San Francisco&language=en' --header 'Authorization: Bearer YOUR_API_KEY' 

    

Obtain address for location



                                                                            
GET https://www.zylalabs.com/api/3866/trueway+geocoding+api/4564/reversegeocode
                                                                            
                                                                        

ReverseGeocode - Endpoint Features
Object Description
location [Required] The location for which you wish to obtain the human-readable address. For example: 37.7879493,-122.3961974
language [Optional] The two-letter language code in which to return results (ISO 639-1). For example: en
Test Endpoint

API EXAMPLE RESPONSE

       
                                                                                                        
                                                                                                                                                                                                                            {
  "results": [
    {
      "address": "505 Howard St Suite 201, San Francisco, CA 94105, USA",
      "postal_code": "94105",
      "country": "United States",
      "region": "California",
      "area": "San Francisco County",
      "locality": "San Francisco",
      "neighborhood": "The East Cut",
      "street": "Howard Street",
      "house": "505",
      "location": {
        "lat": 37.787926,
        "lng": -122.396188
      },
      "location_type": "exact",
      "type": "poi"
    },
    {
      "address": "509 Howard St, San Francisco, CA 94105, USA",
      "postal_code": "94105",
      "country": "United States",
      "region": "California",
      "area": "San Francisco County",
      "locality": "San Francisco",
      "neighborhood": "The East Cut",
      "street": "Howard Street",
      "house": "509",
      "location": {
        "lat": 37.787919,
        "lng": -122.396237
      },
      "location_type": "exact",
      "type": "street_address"
    },
    {
      "address": "505 Howard St, San Francisco, CA 94105, USA",
      "postal_code": "94105",
      "country": "United States",
      "region": "California",
      "area": "San Francisco County",
      "locality": "San Francisco",
      "neighborhood": "The East Cut",
      "street": "Howard Street",
      "house": "505",
      "location": {
        "lat": 37.787926,
        "lng": -122.396187
      },
      "location_type": "exact",
      "type": "street_address"
    },
    {
      "address": "QJQ3+5G SoMa, San Francisco, CA, USA",
      "country": "United States",
      "region": "California",
      "area": "San Francisco County",
      "locality": "San Francisco",
      "neighborhood": "SoMa",
      "location": {
        "lat": 37.787926,
        "lng": -122.396187
      },
      "location_type": "centroid",
      "type": "poi"
    },
    {
      "address": "527-505 Howard St, San Francisco, CA 94105, USA",
      "postal_code": "94105",
      "country": "United States",
      "region": "California",
      "area": "San Francisco County",
      "locality": "San Francisco",
      "neighborhood": "The East Cut",
      "street": "Howard Street",
      "house": "527-505",
      "location": {
        "lat": 37.788073,
        "lng": -122.396597
      },
      "location_type": "centroid",
      "type": "route"
    }
  ]
}
                                                                                                                                                                                                                    
                                                                                                    

ReverseGeocode - CODE SNIPPETS


curl --location --request GET 'https://zylalabs.com/api/3866/trueway+geocoding+api/4564/reversegeocode?location=37.7879493,-122.3961974&language=en' --header 'Authorization: Bearer YOUR_API_KEY' 

    

API Access Key & Authentication

After signing up, every developer is assigned a personal API access key, a unique combination of letters and digits provided to access to our API endpoint. To authenticate with the TrueWay Geocoding API REST API, simply include your bearer token in the Authorization header.

Headers

Header Description
Authorization [Required] Should be Bearer access_key. See "Your API Access Key" above when you are subscribed.


Simple Transparent Pricing

No long term commitments. One click upgrade/downgrade or cancellation. No questions asked.

πŸš€ Enterprise
Starts at $10,000/Year

  • Custom Volume
  • Dedicated account manager
  • Service-level agreement (SLA)

Customer favorite features

  • βœ”οΈŽ Only Pay for Successful Requests
  • βœ”οΈŽ Free 7-Day Trial
  • βœ”οΈŽ Multi-Language Support
  • βœ”οΈŽ One API Key, All APIs.
  • βœ”οΈŽ Intuitive Dashboard
  • βœ”οΈŽ Comprehensive Error Handling
  • βœ”οΈŽ Developer-Friendly Docs
  • βœ”οΈŽ Postman Integration
  • βœ”οΈŽ Secure HTTPS Connections
  • βœ”οΈŽ Reliable Uptime

Zyla API Hub is, in other words, an API MarketPlace. An all-in-one solution for your developing needs. You will be accessing our extended list of APIs with only your user. Also, you won't need to worry about storing API keys, only one API key for all our products is needed.

Prices are listed in USD. We accept all major debit and credit cards. Our payment system uses the latest security technology and is powered by Stripe, one of the world’s most reliable payment companies. If you have any trouble with paying by card, just contact us at [email protected]

Sometimes depending on the bank's fraud protection settings, a bank will decline the validation charge we make when we attempt to be sure a card is valid. We recommend first contacting your bank to see if they are blocking our charges. If more help is needed, please contact [email protected] and our team will investigate further

Prices are based on a recurring monthly subscription depending on the plan selected β€” plus overage fees applied when a developer exceeds a plan’s quota limits. In this example, you'll see the base plan amount as well as a quota limit of API requests. Be sure to notice the overage fee because you will be charged for each additional request.

Zyla API Hub works on a recurring monthly subscription system. Your billing cycle will start the day you purchase one of the paid plans, and it will renew the same day of the next month. So be aware to cancel your subscription beforehand if you want to avoid future charges.

Just go to the pricing page of that API and select the plan that you want to upgrade to. You will only be charged the full amount of that plan, but you will be enjoying the features that the plan offers right away.

Yes, absolutely. If you want to cancel your plan, simply go to your account and cancel on the Billing page. Upgrades, downgrades, and cancellations are immediate.

You can contact us through our chat channel to receive immediate assistance. We are always online from 9 am to 6 pm (GMT+1). If you reach us after that time, we will be in contact when we are back. Also you can contact us via email to [email protected]

Zyla API Hub is, in other words, an API MarketPlace. An all-in-one solution for your developing needs. You will be accessing our extended list of APIs with only your user. Also, you won't need to worry about storing API keys, only one API key for all our products is needed.

Prices are listed in USD. We accept all major debit and credit cards. Our payment system uses the latest security technology and is powered by Stripe, one of the world’s most reliable payment companies. If you have any trouble with paying by card, just contact us at [email protected]

Sometimes depending on the bank's fraud protection settings, a bank will decline the validation charge we make when we attempt to be sure a card is valid. We recommend first contacting your bank to see if they are blocking our charges. If more help is needed, please contact [email protected] and our team will investigate further

Prices are based on a recurring monthly subscription depending on the plan selected β€” plus overage fees applied when a developer exceeds a plan’s quota limits. In this example, you'll see the base plan amount as well as a quota limit of API requests. Be sure to notice the overage fee because you will be charged for each additional request.

Zyla API Hub works on a recurring monthly subscription system. Your billing cycle will start the day you purchase one of the paid plans, and it will renew the same day of the next month. So be aware to cancel your subscription beforehand if you want to avoid future charges.

Just go to the pricing page of that API and select the plan that you want to upgrade to. You will only be charged the full amount of that plan, but you will be enjoying the features that the plan offers right away.

Yes, absolutely. If you want to cancel your plan, simply go to your account and cancel on the Billing page. Upgrades, downgrades, and cancellations are immediate.

You can contact us through our chat channel to receive immediate assistance. We are always online from 9 am to 6 pm (GMT+1). If you reach us after that time, we will be in contact when we are back. Also you can contact us via email to [email protected]

 Service Level
100%
 Response Time
336ms

Category:


Tags:


Related APIs