Skip to content

Releases: CubeVic/coinmarketcapAPI

First version on pypi.org

09 Jun 07:43
Compare
Choose a tag to compare

CMC_API is a Python client for the Coin Market Cap API.

It provides access to all the available endpoints on the API and produces a result similar to the original API with some
minor difference.
The most relevant difference is the addition of a list of keys available in each answer, as shown in the below example.

{
      "metadata": {
            "timestamp": "2022-06-04T04:26:55.117Z",
            "credit_count": 0,
            "error_message": null,
            "list_keys": [
                  "plan",
                  "usage"
            ]
      },
...