Arccos Golf Clubs API

The Clubs API from Arccos Golf — 2 operation(s) for clubs.

Operations 2

GET /v5/users/{userId}/clubs Search clubs #
GET /v5/users/{userId}/clubs/{clubId} Get One Club #

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-clubs-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-clubs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Arccos Golf Clubs API
  version: '1'
  description: 'Operations tagged Clubs across 2 of this provider''s published API definitions: arccos-golf-clubs-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: Clubs
paths:
  /v5/users/{userId}/clubs:
    get:
      summary: Search clubs
      description: Search a users clubs
      tags:
      - Clubs
      operationId: handle_search_clubs.get./v5/users/{userId}/clubs
      security:
      - AccessCodeAuth:
        - arccos/read:clubs
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      - 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: status
        description: paired, unpaired, or deleted. defaults to paired.
        required: false
        schema:
          type: string
      - in: query
        name: numberOfShots
        description: number of shots to consider when computing club distances. Valid values are 5, 10, 15, 20, 25, 50, 100. Defaults to 100.
        required: false
        schema:
          type: number
      responses:
        '200':
          description: 200 response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetClubsResponse'
    servers:
    - url: https://api.arccosgolf.com/
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v5/users/{userId}/clubs/{clubId}:
    get:
      summary: Get One Club
      description: Get One Club
      tags:
      - Clubs
      operationId: handle_get_one_club.get./v5/users/{userId}/clubs/{clubId}
      security:
      - AccessCodeAuth:
        - arccos/read:clubs
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      - name: clubId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: 200 response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetOneClubResponse'
    servers:
    - url: https://api.arccosgolf.com/
      description: Base URL declared by the provider in apis.yml (roadmap#122).
components:
  schemas:
    ClubType:
      title: ClubType
      type: string
    GetClubsResponse:
      allOf:
      - $ref: '#/components/schemas/PagedResponseHelper'
      - properties:
          results:
            items:
              $ref: '#/components/schemas/Club'
              title: results.[]
            title: results
            type: array
        required:
        - results
        additionalProperties: false
        type: object
      title: GetClubsResponse
    Club:
      properties:
        clubId:
          title: Club.clubId
          type: number
        status:
          enum:
          - paired
          - unpaired
          - deleted
          title: Club.status
          type: string
        make:
          properties:
            id:
              title: Club.make.id
              description: the numerical arccos id of the club's make
              type: number
            name:
              title: Club.make.name
              description: the display string/name of the make
              type: string
          required:
          - id
          - name
          additionalProperties: false
          title: Club.make
          description: the make of the given club. if this property doesn't exist Arccos doesn't have the make information for the club.
          type: object
        model:
          properties:
            id:
              title: Club.model.id
              description: the numerical arccos id of the club's model
              type: number
            name:
              title: Club.model.name
              description: the display string/name of the model
              type: string
          required:
          - id
          - name
          additionalProperties: false
          title: Club.model
          description: the model of the given club. if this property doesn't exist Arccos doesn't have the model information for the club
          type: object
        clubType:
          $ref: '#/components/schemas/ClubType'
          title: Club.clubType
        stats:
          properties:
            distances:
              properties:
                longest:
                  title: Club.stats.distances.longest
                  type: number
                average:
                  title: Club.stats.distances.average
                  type: number
              required:
              - longest
              - average
              additionalProperties: false
              title: Club.stats.distances
              type: object
            normalizedDistances:
              properties:
                longest:
                  title: Club.stats.normalizedDistances.longest
                  type: number
                average:
                  title: Club.stats.normalizedDistances.average
                  type: number
              required:
              - longest
              - average
              additionalProperties: false
              title: Club.stats.normalizedDistances
              type: object
            numberOfShots:
              title: Club.stats.numberOfShots
              type: number
          required:
          - distances
          - normalizedDistances
          - numberOfShots
          additionalProperties: false
          title: Club.stats
          type: object
      required:
      - clubId
      - status
      - clubType
      - stats
      additionalProperties: false
      title: Club
      type: object
    GetOneClubResponse:
      $ref: '#/components/schemas/Club'
      title: GetOneClubResponse
    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-clubs-api-openapi.yml
- arccos-golf-on-course-data-api-openapi.yml