api.landsofamerica.comLands of America - LandsofAmerica REST API

api.landsofamerica.com Profile

Api.landsofamerica.com is a subdomain of landsofamerica.com, which was created on 2002-02-14,making it 23 years ago. It has several subdomains, such as support.landsofamerica.com , among others.

Description:Search United States land listings farms ranches and more on LandsOfAmericacom View photos and details save properties and contact...

Discover api.landsofamerica.com website stats, rating, details and status online.Use our online tools to find owner and admin contact info. Find out where is server located.Read and write reviews or vote to improve it ranking. Check alliedvsaxis duplicates with related css, domain relations, most used words, social networks references. Go to regular site

api.landsofamerica.com Information

HomePage size: 28.864 KB
Page Load Time: 0.043859 Seconds
Website IP Address: 65.200.12.152

api.landsofamerica.com Similar Website

Shipedge API Documentations - Shipedge API Documentation
developer.shipedge.com
About Admin API | Admin Api
api2.hostbillapp.com
API Documentation - SEO Review Tools API
api.seoreviewtools.com
Video Conferencing SDK and API – TrueConf API and SDK
developers.trueconf.com
Car database REST API Car2Db.com
api.car2db.com
1,000,000+ Recipe and Grocery List API | BigOven Build API
api2.bigoven.com
Events Feed, Concert & Event API - Eventful API
api.eventful.com
Edamam - Food Database API, Nutrition API and Recipe API
developer.edamam.com
Events Feed, Concert & Event API - Eventful API
api.evdb.com
Russell Lands Job Openings - Apply today | Russell Lands Inc.
russelllands.ninjagig.com
Welcome to Rest Haven Memorial Park — Rest Haven Memorial Park
rhvbow.cemeterydata.com
Home | SurveyGizmo REST API
apihelp.surveygizmo.com
REST API - Airtable
api.airtable.com
WordPress REST API Team
make.wp-api.org
JSONPlaceholder - Free Fake REST API
jsonplaceholder.typicode.com

api.landsofamerica.com PopUrls

Showcase Properties
https://api.landsofamerica.com/landsconnector/app/agsouthfc/
Showcase Properties
https://api.landsofamerica.com/landsconnector/app/cowboysindians/
Showcase Properties
https://api.landsofamerica.com/landsconnector/app/farmcredit-nwfl/
Showcase Properties
https://api.landsofamerica.com/landsconnector/app/mother-earth-news/

api.landsofamerica.com Httpheader

Transfer-Encoding: chunked
Content-Type: text/html;charset=UTF-8
Content-Encoding: gzip
Vary: Accept-Encoding
Server: Microsoft-IIS/8.5
Set-Cookie: CFID=514487596; Expires=Fri, 20-May-2050 17:25:17 GMT; Path=/; HttpOnly, CFTOKEN=71f2df873dfe815b-67A9BE1E-DFCA-2FF9-0D8744E75C4CE73D; Expires=Fri, 20-May-2050 17:25:17 GMT; Path=/; HttpOnly, JSESSIONID=0C17DBD768AF642F0F891AA8251D9045.cfusion; Path=/; HttpOnly
X-Powered-By: ASP.NET
X-LOAServer: LDC2
Date: Wed, 27 May 2020 17:25:17 GMT

api.landsofamerica.com Meta Info

content="width=device-width, initial-scale=1.0" name="viewport"/

api.landsofamerica.com Ip Information

Ip Country: United States
City Name: Brooklyn
Latitude: 40.674
Longitude: -73.9701

api.landsofamerica.com Html To Plain Text

Lands of America REST API The Lands of America REST API is designed to give outside parties access to the Lands of America listings and search applications. Current Version The current version of the API is 3.0.1. You can view documentation and the API dashboard at https://api.landsofamerica.com/v3/ . Previous Versions Version 2: https://api.landsofamerica.com/v2/ (deprecated, support ends December 1st, 2017) API Endpoint All API URLs listed in this documentation are relative to https://api.landsofamerica.com/ . For example, the /v3/locations/states API call is reachable at https://api.landsofamerica.com/v3/locations/states . Release Notes The latest release notes can be found at the bottom of this document. You can also subscribe to our RSS feed detailing changes made to the API. RESTful The LOA API does its best to follow RESTful conventions. View the description of each resource to determine if there are changes in default REST behavior for a particular resource. SSL-Only Access Access to the LandsofAmerica REST API is via SSL only. All requests must be through the HTTPS protocol, and must not use weak ciphers. Client requests should use TLS 1.2 or higher, as any SSLv2 or SSLv3 requests will be rejected at the firewall. Below is a sample WebClient call from .NET using TLS 1.2 with the relevant lines highlighted. T CallApiT(NameValueCollection parameters, string url) where T : new () { //Merge the parameters and the URL url = url + "&" + HttpUtility.UrlEncode(parameters.ToString()); ServicePointManager.Expect100Continue = true ; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; ServicePointManager.ServerCertificateValidationCallback = delegate { return true ; }; using ( var wc = new WebClient()) { try { var data = wc.DownloadString(url); return ! string .IsNullOrEmpty(data) ? JsonConvert.DeserializeObjectT(data) : new T(); } catch (Exception ex) { _ErrorService.LogException(ex); return new T(); } } } Passing Request Data Request data is passed to the API by sending GET or POST requests to the API endpoints with the appropriate parameters. The documentation for each API call will contain more detail on the parameters accepted by the call. Authentication All requests to the API must include an API Key in the URL of the request. The API Key is unique per user, and should not be published publicly. You will provide the API Key in the URL of each request using the following format: https://api.landsofamerica.com/v3/locations/states/? APIKey=[Example Key] All additional resource parameters can be placed anywhere within the query. The order of the passed parameters is not important. https://api.landsofamerica.com/v3/listings/1234/? APIKey=[Example Key] &includeImages=true or https://api.landsofamerica.com/v3/listings/1234/?includeImages=true& APIKey=[Example Key] Rate Limiting In order to prevent abuse of the API, rate limits will be strictly enforced. We will, however, work with you to ensure that you are allowed a reasonable rate of requests in order to serve your audience appropriately. Each request made to the API will return information on the current state of your rate limit. The following header values will be returned with each request: x-ratelimit-limit The number of requests allowed per minute for your API Key x-ratelimit-remaining The number of remaining requests in the current time range x-ratelimit-reset An epoch time representation of when your rate will reset back to the maximum value x-ratelimit-seconds-remaining The number of seconds before your rate limit will be reset Here is an example of headers returned with a request: x-ratelimit-limit:60; x-ratelimit-remaining:35; x-ratelimit-reset:1409212860; x-ratelimit-seconds-remaining:33; This particular user is allowed 60 requests per minute. They’ve used 25 of their requests and have 33 seconds remaining before their rate limit is reset. IP Restrictions Access to the API will be restricted by IP address. You will be able to add new IP addresses through the PropertyControlCenter in order to ensure that all relevant servers within your organization have access to the API. Error Handling For GET requests, any status other than 200 OK or 201 Created can be considered an error. If a value other than 200 OK or 201 Created is returned, the body of the request will also contain a list of errors that happened during the request. There will generally be only one error, but in the case of validation errors for inputs there may be multiple errors if there are mutliple inputs with invalid data. Below are several examples of errors that may be returned. Request to /v3/types/{type} with an invalid type 400 Bad Request { "success": false, "data": "" "errors": [ "Invalid Type: No valid type provided" ] } After sending too many requests and exceeding the rate limit 429 Too Many Requests { "success": false, "data": "" "errors": [ "Rate Limit Exceeded: You have exceeded the rate limit." ] } The following headers would also be returned: x-ratelimit-limit:60 x-ratelimit-remaining:0 x-ratelimit-reset:1409213340 x-ratelimit-seconds-remaining:11 Request to /v3/listings/1234 where ID 1234 does not exist. 404 Not Found { "success": false, "data": "", "errors": [ "Invalid Listing ID: The listing id provided could not be found." ] } POST to /v3/lead with multiple validation errors 400 Bad Request { "success": false, "data": "", "errors": [ "Contact name missing: The value for contact name was not provided", "Email address missing: The value for Email address was not provided", "Phone number missing: The value for Phone number was not provided", "Comment missing: The value for comment was not provided", "Invalid listing ID: The listing ID provided could not be found" ] } API Support If there are issues directly related to the use the API, you can contact our API Support Team at api-support@landsofamerica.com. Response times are not guaranteed, but we will try to respond to all reasonable requests within 24 hours. Release Notes Version 3.0.0 - Pre-release Lots of adjustments to standardize the API return values, and add additional internal methods not available to the public. Type Change New Feature Standardized all return values to the following format for both success and errors: { "success": true|false, "errors": [], "data": return value, may be string, struct, or array. } Version 2.0.1 - June 3, 2016 Internal API customers may now elect not to send an email notification when posting a lead by providing false for the sendNotification argument. External API customers may provide the sendNotification argument, but it will be ignored. Type Change New Feature Added optional sendNotification argument to the lead resource. Version 2.0.0 - May 31, 2016 Breaking Change In Version 2, property types were completely reworked. New property types have been added, and the manner in which types are passed to the API have been changed. To use Version 2 of the API, you must adjust all URLs to use the v2 directory after the URL, i.e. https://api.landsofamerica.com/ v2 / . Check the API document for the types , listings , showcaselisting , and listing resources to review the changes. Type Change New Feature Adjusted property types to support new and expanded property type values in Version 2.0 New Feature Update to types resource. New Feature Update to listings resource. New Feature Update to listing resource. New Feature Update to showcaselisting resource. Return values match the changes discussed for the listing resource. Version 1.1.0 - 9 February, 2016 Added bounds and includeBoundaries arguments to the listings resource. Type Change New Feature The listings resource now allows for a boundary to be provided via the bounds argument. The argument takes a standard map bounding box in Google’s default format. The format is (SWlat,SWlng),(NElat,NElng) . You provide the lower left and upper right corner of the boundary you’d like to search within, and we’ll return results within that...

api.landsofamerica.com Whois

Domain Name: LANDSOFAMERICA.COM Registry Domain ID: 83624760_DOMAIN_COM-VRSN Registrar WHOIS Server: whois.markmonitor.com Registrar URL: http://www.markmonitor.com Updated Date: 2024-01-13T10:36:26Z Creation Date: 2002-02-14T05:42:58Z Registry Expiry Date: 2025-02-14T05:42:58Z Registrar: MarkMonitor Inc. Registrar IANA ID: 292 Registrar Abuse Contact Email: abusecomplaints@markmonitor.com Registrar Abuse Contact Phone: +1.2086851750 Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited Name Server: A1-73.AKAM.NET Name Server: A22-64.AKAM.NET Name Server: A3-65.AKAM.NET Name Server: A4-66.AKAM.NET Name Server: A6-67.AKAM.NET Name Server: A9-64.AKAM.NET DNSSEC: unsigned >>> Last update of whois database: 2024-05-17T19:46:32Z <<<