Arccos Golf Courses API

The Courses API from Arccos Golf — 3 operation(s) for courses.

Operations 3

GET /v5/courses Search Courses #
GET /v5/courses/{courseId} Get One Course #
GET /v5/courses/{courseId}/versions/{courseVersion} Get One Course Version #

Documentation

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/arccos-golf-courses-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

arccos-golf-courses-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Arccos Golf Courses API
  version: '1'
  description: 'Operations tagged Courses across 2 of this provider''s published API definitions: arccos-golf-courses-api-openapi.yml, arccos-golf-on-course-data-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.arccosgolf.com/
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Courses
paths:
  /v5/courses:
    get:
      summary: Search Courses
      description: Search Courses
      tags:
      - Courses
      operationId: handle_search_courses.get./v5/courses
      parameters:
      - in: query
        name: limit
        description: maximum number of results to get
        required: false
        schema:
          type: integer
      - in: query
        name: offset
        description: number of results to get per request
        required: false
        schema:
          type: integer
      - in: query
        name: name
        description: Search by partial course name
        required: false
        schema:
          type: string
      responses:
        '200':
          description: 200 response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetCoursesResponse'
    servers:
    - url: https://api.arccosgolf.com/
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v5/courses/{courseId}:
    get:
      summary: Get One Course
      description: Get One Course
      tags:
      - Courses
      operationId: handle_get_one_course.get./v5/courses/{courseId}
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: 200 response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetOneCourseResponse'
    servers:
    - url: https://api.arccosgolf.com/
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v5/courses/{courseId}/versions/{courseVersion}:
    get:
      summary: Get One Course Version
      description: Get One Course Version
      tags:
      - Courses
      operationId: handle_get_one_course_version.get./v5/courses/{courseId}/versions/{courseVersion}
      parameters:
      - name: courseId
        in: path
        required: true
        schema:
          type: string
      - name: courseVersion
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: 200 response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetCoursesResponse'
    servers:
    - url: https://api.arccosgolf.com/
      description: Base URL declared by the provider in apis.yml (roadmap#122).
components:
  schemas:
    CourseHole:
      properties:
        holeId:
          title: CourseHole.holeId
          type: number
        mensPar:
          title: CourseHole.mensPar
          type: number
        womensPar:
          title: CourseHole.womensPar
          type: number
      required:
      - holeId
      - mensPar
      - womensPar
      additionalProperties: false
      title: CourseHole
      type: object
    Course:
      properties:
        courseId:
          title: Course.courseId
          type: number
        courseVersion:
          title: Course.courseVersion
          type: number
        name:
          title: Course.name
          type: string
        numberOfHoles:
          title: Course.numberOfHoles
          type: number
        mensPar:
          title: Course.mensPar
          type: number
        womensPar:
          title: Course.womensPar
          type: number
        location:
          $ref: '#/components/schemas/Location'
          title: Course.location
        city:
          title: Course.city
          type: string
        state:
          title: Course.state
          type: string
        country:
          title: Course.country
          type: string
        altitude:
          title: Course.altitude
          type: number
        holes:
          items:
            $ref: '#/components/schemas/CourseHole'
            title: Course.holes.[]
          title: Course.holes
          type: array
        tees:
          items:
            $ref: '#/components/schemas/Tee'
            title: Course.tees.[]
          title: Course.tees
          type: array
      required:
      - courseId
      - courseVersion
      - name
      - numberOfHoles
      - mensPar
      - womensPar
      - location
      - city
      - state
      - country
      - holes
      - tees
      additionalProperties: false
      title: Course
      type: object
    GetCoursesResponse:
      allOf:
      - $ref: '#/components/schemas/PagedResponseHelper'
      - properties:
          results:
            items:
              $ref: '#/components/schemas/Course'
              title: results.[]
            title: results
            type: array
        required:
        - results
        additionalProperties: false
        type: object
      title: GetCoursesResponse
    GetOneCourseResponse:
      $ref: '#/components/schemas/Course'
      title: GetOneCourseResponse
    Location:
      properties:
        latitude:
          title: Location.latitude
          type: number
        longitude:
          title: Location.longitude
          type: number
      required:
      - latitude
      - longitude
      additionalProperties: false
      title: Location
      type: object
    Tee:
      properties:
        teeId:
          title: Tee.teeId
          description: the numeric identifier for the tee. this is unique against the courseId and courseVersion, not globally unique
          type: number
        teeName:
          title: Tee.teeName
          description: the display string for the tee that was played
          type: string
      required:
      - teeId
      - teeName
      additionalProperties: false
      title: Tee
      type: object
    PagedResponseHelper:
      properties:
        paging:
          properties:
            limit:
              title: PagedResponseHelper.paging.limit
              type: number
            offset:
              title: PagedResponseHelper.paging.offset
              type: number
            previous:
              title: PagedResponseHelper.paging.previous
              type: string
            next:
              title: PagedResponseHelper.paging.next
              type: string
          required:
          - limit
          - offset
          additionalProperties: false
          title: PagedResponseHelper.paging
          type: object
        results:
          items:
            title: PagedResponseHelper.results.[]
          title: PagedResponseHelper.results
          type: array
      required:
      - paging
      - results
      additionalProperties: false
      title: PagedResponseHelper
      type: object
  securitySchemes:
    AccessCodeAuth:
      type: oauth2
      flows:
        authorizationCode:
          scopes:
            openid: Required for all endpoints that have userId in the path
            arccos/read:users: Grants read users access
            arccos/read:rounds: Grants read rounds access
            arccos/read:clubs: Grants read clubs access
          authorizationUrl: https://signin.arccosgolf.com/login
          tokenUrl: https://api.arccosgolf.com/oauth2/token
    BasicAuth:
      type: http
      scheme: basic
x-refined-from:
- arccos-golf-courses-api-openapi.yml
- arccos-golf-on-course-data-api-openapi.yml