Not a member? Join now to track your game, create a group, find courses, find golfers, and browse equipment all for FREE.

Course Search

    Developer API Home
Search courses by keyword or location.

URL: http://www.oobgolf.com/api/course_search.php

Sample Request: http://www.oobgolf.com/api/course_search.php?city=Lewisburg&state=PA&radius=30&dev=YOUR-KEY-HERE

Required Parameters
keywords you must provide either keywords or a location and radius.
dev developer api key


Optional Parameters
keywords keywords to search courses by
radius integer that limits course to mile radius from location passed
lat latitude of location to search
lng longitude of location to search
city city of location to search
state state of location to search (two character code for US and Canada)
country two character country code of location to search
public set to '1' to limit courses to only public courses
private set to '1' to limit courses to only private courses
semi set to '1' to limit courses to only semiprivate courses
resort set to '1' to limit courses to only resort courses
military set to '1' to limit courses to only military military
page integer from 0-X for page number of results. results number is the number of courses, not clubs
page_size number of courses to return per page, max is 50 (defaults to 20). results number is the number of courses, not clubs


NOTE: the total attribute returned is the number of courses not clubs.

Sample Response:
<clubs page="1" total="3">
	<club>
		<url>http://www.oobgolf.com/courses/course/13181/Bucknell_Golf_Club.html</url>
		<id>13181</id>
		<name>Bucknell Golf Club</name>
		<city>Lewisburg</city>
		<state>PA</state>
		<country>US</country>
		<type>Semi-Private</type>
		<distance>1</distance>
		<rating>3.5</rating>
		<lat>40.9521</lat>
		<lng>-76.8879</lng>
		<course>
			<id>1</id>
			<name/>
			<holes>18</holes>
		</course>
	</club>
	<club>
		<url>http://www.oobgolf.com/courses/course/13801/Turbot_Hills_Golf_Course.html</url>
		<id>13801</id>
		<name>Turbot Hills Golf Course</name>
		<city>Milton</city>
		<state>PA</state>
		<country>US</country>
		<type>Semi-Private</type>
		<distance>5</distance>
		<rating>2.5</rating>
		<lat>41.0396</lat>
		<lng>-76.8518</lng>
		<course>
			<id>3480</id>
			<name/>
			<holes>18</holes>
		</course>
	</club>
	<club>
		<url>http://www.oobgolf.com/courses/course/13768/Sunny_Hill_Golf_Course.html</url>
		<id>13768</id>
		<name>Sunny Hill Golf Course</name>
		<city>Sunbury</city>
		<state>PA</state>
		<country>US</country>
		<type>Public</type>
		<distance>9</distance>
		<rating/>
		<lat>40.8551</lat>
		<lng>-76.7776</lng>
		<course>
			<id>3816</id>
			<name/>
			<holes>9</holes>
		</course>
	</club>
</clubs>