> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rated.network/llms.txt
> Use this file to discover all available pages before exploring further.

# Performance

> A series of endpoints that drill down on performance related metrics for validators.

export const Endpoint = ({type, path, url}) => {
  const methodColors = {
    post: 'bg-blue-400/20 text-blue-700 dark:bg-blue-400/20 dark:text-blue-400',
    get: 'bg-green-400/20 text-green-700 dark:bg-green-400/20 dark:text-green-400',
    put: 'bg-yellow-400/20 text-yellow-700 dark:bg-yellow-400/20 dark:text-yellow-400',
    delete: 'bg-red-400/20 text-red-700 dark:bg-red-400/20 dark:text-red-400',
    patch: 'bg-orange-400/20 text-orange-700 dark:bg-orange-400/20 dark:text-orange-400'
  };
  const pathParts = path.startsWith('/') ? path.substring(1).split('/') : path.split('/');
  return <a href={url} className="relative flex-1 flex gap-2 min-w-0 rounded-xl items-center cursor-pointer p-1.5 border-standard">
        <div className={`rounded-lg font-bold px-1.5 py-0.5 text-sm leading-5 ${methodColors[type.toLowerCase()]}`}>
          {type}
        </div>
        <div className="flex items-center space-x-2 overflow-x-auto flex-1 no-scrollbar">
          <div className="group flex items-center flex-1 gap-0.5 font-mono">
            {url && <div className="absolute right-0 p-2 rounded-lg hidden group-hover:block">
                <Icon icon="arrow-right" />
              </div>}
            {pathParts.map((part, i) => {
    const isParam = part.includes('{');
    return <>
                  <div className="text-sm text-gray-400">/</div>
                  {isParam ? <div className="text-sm font-mono font-medium rounded-md px-1 border-2 min-w-max text-[#2AB673] bg-[#2AB673]/10 border-[#2AB673]/30">
                      {part}
                    </div> : <div className="text-sm font-medium text-gray-800 dark:text-white min-w-max">
                      {part}
                    </div>}
                </>;
  })}
          </div>
        </div>
      </a>;
};

## Validator Performance

You can query this endpoint by using the `vote_account` address of a validator. The granularity of results can either be daily or around 20 minute intervals (3,000 slots).

### Get validator performance

<Endpoint type="GET" path="/v1/solana/validators/{validator_id}/performance" url="/rated-api/api-reference/v1/solana/performance/get-validator-performance" />

<Note>
  Earliest data available is from April 1, 2024.
</Note>

***

## Validator block-level insights

This endpoint returns information about the blocks created by a validator, including average compute units, number of transactions, and reward levels. You can query this endpoint by using the `vote_account` address of a validator.

### Get validator block insights

<Endpoint type="GET" path="/v1/solana/validators/{validator_id}/blockInsights" url="/rated-api/api-reference/v1/solana/performance/get-validator-block-insights" />

<Note>
  Earliest daily data available is from March 1, 2025.
</Note>

***

## Validator State

This endpoint returns information about a validator's state per day. You can query this endpoint by using the `vote_account` address of a validator.

### Get validator state information

<Endpoint type="GET" path="/v1/solana/validators/{validator_id}/state" url="/rated-api/api-reference/v1/solana/performance/get-validator-state-information" />

***

## Geolocation Vote Latency

These endpoints provide vote latency data across different geographical locations and data centers.

### Get daily vote latency across all geolocations

<Endpoint type="GET" path="/v1/solana/network/geolocation/latency" url="/rated-api/api-reference/v1/solana/performance/get-daily-vote-latency-across-all-geolocations" />

<Note>
  Earliest data available is from November 1, 2024.
</Note>

***

## Validator Vote Performance

This endpoint returns information about a validator's vote performance. You can query this endpoint by using the `vote_account` address of a validator.

### Get validator vote performance data

<Endpoint type="GET" path="/v1/solana/validators/{validator_id}/votePerformance" url="/rated-api/api-reference/v1/solana/performance/get-validator-vote-performance-data" />

***

## Network Effectiveness

These endpoints provide network-wide performance metrics and historical data.

### Get historical network level performance

<Endpoint type="GET" path="/v1/solana/network/effectiveness" url="/rated-api/api-reference/v1/solana/performance/get-historical-network-level-performance" />

<Note>
  Earliest data available is from April 1, 2024.
</Note>
