POST
/
v1
/
stake
/
rewards
/
search
curl --request POST \
  --url https://api.cdp.coinbase.com/platform/v1/stake/rewards/search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "network_id": "ethereum-mainnet",
  "asset_id": "ETH",
  "address_ids": "[0xfc807D1bE4997e5C7B33E4d8D57e60c5b0f02B1a]",
  "start_time": "2024-07-21T00:00:00Z",
  "end_time": "2024-07-21T00:00:00Z",
  "format": "usd"
}'
{
  "data": [
    {
      "address_id": "0xfc807D1bE4997e5C7B33E4d8D57e60c5b0f02B1a",
      "date": "2024-07-21",
      "amount": "100",
      "state": "pending",
      "format": "usd",
      "usd_value": {
        "amount": "100",
        "conversion_price": "100",
        "conversion_time": "2024-07-21T00:00:00Z"
      }
    }
  ],
  "has_more": true,
  "next_page": "<string>"
}

Authorizations

Authorization
string
header
required

Enter your JSON Web Token (JWT) here. Refer to the Generate JWT section of our Authentication docs for information on how to generate your Bearer Token.

Query Parameters

limit
integer

A limit on the number of objects to be returned. Limit can range from 1 to 100, and the default is 50.

page
string

A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

Maximum length: 5000

Body

application/json

Response

200
application/json

The list of staking rewards