# Chapter 1.2 - Endpoints and Methods

Source: https://developer.avalara.com/products/communications/integration-guides/dev-guide_geo_soap/getting-started/endpoints-methods/

-   [Previous](/communications/dev-guide_geo_soap/getting-started/account-creation/)
-   [Next](/communications/dev-guide_geo_soap/getting-started/sample-messages/)

### Endpoints

AFC Geo SaaS Pro Soap has two sets of endpoints:

1.  Binding set ending in `/2.0` returns exceptions when problems are encountered - we recommend using these endpoints so that you can properly handle any exceptions
2.  Binding set _not_ ending in `/2.0` returns a NULL when problems are encountered

Binding

URL

Basic HTTP

[https://ezgeoasp.billsoft.com/LocatorService.svc/2.0](https://ezgeoasp.billsoft.com/LocatorService.svc/2.0)

[https://ezgeoasp.billsoft.com/LocatorService.svc](https://ezgeoasp.billsoft.com/LocatorService.svc)

Custom

[https://ezgeoasp.billsoft.com/LocatorService.svc/SSL/2.0](https://ezgeoasp.billsoft.com/LocatorService.svc/SSL/2.0)

[https://ezgeoasp.billsoft.com/LocatorService.svc/SSL](https://ezgeoasp.billsoft.com/LocatorService.svc/SSL)

### Web Service Methods

Method

Description

Request

Response

`GeocodeAddress`

Accepts a single address as input and returns a single address in the street database that best matches the input data

[GeocodeAddress](/communications/dev-guide_geo_soap/reference/geocode-address/)

[GeocodeAddressResponse](/communications/dev-guide_geo_soap/reference/geocode-address-response/)

`GeocodeAllMatches`

Accepts a single address as input and returns all addresses in the street database that matches the input data

[GeocodeAllMatches](/communications/dev-guide_geo_soap/reference/geocode-all-matches/)

[GeocodeAllMatchesResponse](/communications/dev-guide_geo_soap/reference/geocode-all-matches-response/)

`GeocodeLatLong`

Accepts the latitude and longitude of a location as input and returns jurisdiction information only (not complete addresses)

[GeocodeLatLong](/communications/dev-guide_geo_soap/reference/geocode-lat-long/)

[GeocodeLatLongResponse](/communications/dev-guide_geo_soap/reference/geocode-lat-long-response/)

`GetServerTime`

Returns current time on the web server in UTC

[GetServerTime](/communications/dev-guide_geo_soap/reference/get-server-time/)

[GetServerTimeResponse](/communications/dev-guide_geo_soap/reference/get-server-time-response/)

-   [Previous](/communications/dev-guide_geo_soap/getting-started/account-creation/)
-   [Next](/communications/dev-guide_geo_soap/getting-started/sample-messages/)