> ## 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.

# Metadata

> A series of endpoints that drill down on metadata-related metrics for both entities and 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>;
};

<Warning>
  Metadata endpoint is available only to annual commitment and custom Enterprise plans. Get in touch with [hello@rated.network ](<mailto:hello@rated.network >)to learn more.
</Warning>

## Entity Metadata

The entity metadata endpoints inform you about how validators are mapped to entities, their APRs, and slashing metrics.

Please head to our [Glossary](/rated-api/glossary/ethereum/) to understand what individual metrics refer to.

### Get Validator mappings for Pools and Operators

<Endpoint type="GET" path="/v1/eth/entities/{entity_id}/mappings" url="/rated-api/api-reference/v1/ethereum/metadata/get-validator-mappings-for-pools-and-operators" />

### Get APR information for Pools, Operators and Addresses

<Endpoint type="GET" path="/v1/eth/entities/{entity_id}/aprs" url="/rated-api/api-reference/v1/ethereum/metadata/get-apr-information-for-pools-operators-and-addresses" />

### Get validator consolidations information for Pools and Operators

<Endpoint type="GET" path="/v1/eth/entityConsolidations" url="/rated-api/api-reference/v1/ethereum/metadata/get-validator-consolidations-information-for-pools-and-operators" />

***

## Validator Metadata

The validator metadata endpoints provide information about validator mappings, APR, and slashing history.

### Get Pool and Operator mappings for all Validators

<Endpoint type="GET" path="/v1/eth/validators/mappings" url="/rated-api/api-reference/v1/ethereum/metadata/get-pool-and-operator-mappings-for-all-validators" />

### Get Pool and Operator mappings for Validators

<Endpoint type="GET" path="/v1/eth/validators/{validator_index_or_pubkey}/mappings" url="/rated-api/api-reference/v1/ethereum/metadata/get-pool-and-operator-mappings-for-validators" />

### Get APR information for Validators

<Endpoint type="GET" path="/v1/eth/validators/{validator_index_or_pubkey}/aprs" url="/rated-api/api-reference/v1/ethereum/metadata/get-apr-information-for-validators" />

### Get Slashings information for all Validators

<Endpoint type="GET" path="/v1/eth/validators/slashings" url="/rated-api/api-reference/v1/ethereum/metadata/get-slashings-information-for-all-validators" />

### Get consolidations for Validators

<Endpoint type="GET" path="/v1/eth/validators/consolidations" url="/rated-api/api-reference/v1/ethereum/metadata/get-consolidations-for-validators" />

***

## API Metadata

Information about the Rated API endpoints and their specifications.

### Get metadata on the Rated Ethereum API endpoints

<Endpoint type="GET" path="/v1/eth/apiMetadata" url="/rated-api/api-reference/v1/ethereum/metadata/get-metadata-on-the-rated-ethereum-api-endpoints" />

***
