GET
/
weekly-commits
import os
from artemis import Artemis

client = Artemis(
    api_key=os.environ.get("ARTEMIS_API_KEY"),  # This is the default and can be omitted
)
response = client.fetch_weekly_commits()
print(response)
[
  {
    "All Commits": 181793,
    "date": "2018-12-02"
  },
  {
    "All Commits": 203691,
    "date": "2018-12-09"
  }
]

Authorizations

APIKey
string
query
required

Available for Enterprise accounts in the Artemis Terminal settings page.

Query Parameters

ecosystem
string

Name of of the ecosystem (ie chain/protocol). The full list of names is available from /dev-ecosystems. Omit to fetch data for all ecosystems

includeForks
boolean

If true, count forks in addition to the original repos

daysBack
integer

How many days back from today to pull data for. Data is weekly

Response

200
application/json
An unpaged list of commit data

The response is of type any[].