func (client *Client) GetBlock(blockID string) (*Response, error) {
    path := "/block"
    uri := fmt.Sprintf("%s%s/%s", client.apiBaseURL, path, blockID)

    req, err := http.NewRequest("GET", uri, bytes.NewBuffer([]byte("")))