Network Specific

Network specific queries will return data in regards to the network as a whole and not anything related to a specific provider.

Online Providers

GET https://api.stats.golem.network/v1/network/online

This endpoint returns the online providers from the public-beta, devnet-beta.1 and aarch64-network subnets.

    {
        "earnings_total": 0.9516965238371694,
        "node_id": "0x1f1eeefd52212b59a92a583febb7227860df8c5d",
        "data": {
            "id": "0x1f1eeefd52212b59a92a583febb7227860df8c5d",
            "wallet": "0x347987a2da0069cbcb54eaf2ccd8b67a09e632eb",
            "golem.com.scheme": "payu",
            "golem.inf.mem.gib": 4.01,
            "golem.node.id.name": "blue-notes-robot",
            "golem.runtime.name": "wasmtime",
            "golem.inf.cpu.cores": 12,
            "golem.inf.cpu.threads": 16,
            "golem.inf.storage.gib": 100.0,
            "golem.runtime.version": "0.2.1",
            "golem.com.usage.vector": [
                "golem.usage.duration_sec",
                "golem.usage.cpu_sec"
            ],
            "golem.com.pricing.model": "linear",
            "golem.node.debug.subnet": "public-beta",
            "golem.inf.cpu.architecture": "x86_64",
            "golem.srv.caps.multi-activity": true,
            "golem.com.scheme.payu.interval_sec": 120.0,
            "golem.activity.caps.transfer.protocol": [
                "https",
                "gftp",
                "http"
            ],
            "golem.com.pricing.model.linear.coeffs": [
                5e-06,
                2.5e-05,
                0.015
            ],
            "golem.com.payment.debit-notes.accept-timeout?": 240,
            "golem.com.payment.platform.erc20-mainnet-glm.address": "0x347987a2da0069cbcb54eaf2ccd8b67a09e632eb",
            "golem.com.payment.platform.zksync-mainnet-glm.address": "0x347987a2da0069cbcb54eaf2ccd8b67a09e632eb"
        },
        "online": true,
        "updated_at": "2021-06-10T17:10:33.712053+02:00",
        "created_at": "2021-06-08T20:54:34.951232+02:00"
    },
    
    ...

Current Network Stats

GET https://api.stats.golem.network/v1/network/online/stats

Returns the current total stats for the whole network of online providers.

Network Utilization

GET https://api.stats.golem.network/v1/network/utilization

Returns datapoints containing a UNIX timestamp and the amount of providers computing at a given time. This specific endpoint returns data from the last 6 hours.

Network Version Adoption

GET https://api.stats.golem.network/v1/network/versions

Returns the amount of providers running on a given version

Historical Network Stats

GET https://api.stats.golem.network/v1/network/historical/stats

Returns the historical max stats for every day stored.

Historical Stats Provider Computing

GET https://api.stats.golem.network/v1/network/historical/stats/computing

Returns a series of datapoints containing a datetime object and the amount of providers computing simultaneously.

Historical Network Stats (30m)

GET https://api.stats.golem.network/v1/network/historical/stats/30m

Returns the network stats from the past 30 minutes.

Historical Median Pricing

GET https://api.stats.golem.network

Returns the median pricing over time.

Historical Average Earnings

GET https://api.stats.golem.network/v1/network/historical/pricing/average

Returns the average pricing over time.

Historical Max Providers Computing Simultaneously

GET https://api.stats.golem.network/v1/network/historical/provider/computing

Returns the max amount of providers computing simultaneously for every stored date.

Latest Providers On The Network

GET https://api.stats.golem.network/v1/network/historical/nodes/:int

Returns the latest n providers on the network.

Path Parameters

Name
Type
Description

int

number

Number of latest nodes to retrieve.

Retrieve all providers seen

GET https://api.stats.golem.network/v1/network/historical/nodes

Returns all providers ever indexed by the stats page.

Network Median Pricing (live)

GET https://api.stats.golem.network/v1/network/pricing/median

Returns the networks current median pricing.

Network Average Pricing (live)

GET https://api.stats.golem.network/v1/network/pricing/average

Returns the networks current average pricing.

Network Total Earnings Past 6 Hours

GET https://api.stats.golem.network/v1/network/earnings/6

Returns the whole networks total earnings the past 6 hours.

Network Total Earnings Past 24 Hours

GET https://api.stats.golem.network/v1/network/earnings/24

Returns the whole networks total earnings the past 24 hours.

Network Total Earnings Past 90 Days

GET https://api.stats.golem.network/v1/network/earnings/90d

Returns the whole networks total earnings the past 90 days.

Network Providers Computing Currently

GET https://api.stats.golem.network/v1/network/computing

Returns the amount of providers currently computing on the network

Network Providers Average Earnings

GET https://api.stats.golem.network/v1/network/provider/average/earnings

Returns the average earnings per task.

Market Agreement Termination Reasons (1h)

GET https://api.stats.golem.network/v1/network/market/agreement/termination/reasons

This endpoint returns the count of reasons why the agreement between the provider and the requestor got terminated during the last hour. Reasons provided by the endpoint includes: market_agreement_success - Task computed successfully market_agreement_cancelled - The requestor cancelled the task request. market_agreement_expired - The whole task hit the timeout limit. market_agreements_requestorUnreachable - Provider is unable to send DebitNote to Requestor due to network errors market_agreements_debitnoteDeadline - This one is reported when DebitNotes are sent, but Requestor isn't accepting them.

GET https://api.stats.golem.network/v1/network/market/invoice/paid/1h

Returns the percentage of invoices paid during the last hour.

Providers Invoices Accepted Percentage Last Hour

GET https://api.stats.golem.network/v1/network/market/provider/invoice/accepted/1h

Returns the percentage of accepted invoices issued by the providers on the network.

Last updated

Was this helpful?