Parse response header data as returned by curl_fetch, either as a set of strings or into a named list.
parse_headers(txt, multiple = FALSE)
parse_headers_list(txt)The parse_headers_list function parses the headers into a normalized (lowercase field names, trimmed whitespace) named list.
If a request has followed redirects, the data can contain multiple sets of headers. When multiple = TRUE, the function returns a list with the response headers for each request. By default it only returns the headers of the final request.
req <- curl_fetch_memory("https://hb.cran.dev/redirect/3")
parse_headers(req$headers)
#> [1] "HTTP/2 200 "
#> [2] "date: Tue, 07 Oct 2025 21:16:06 GMT"
#> [3] "content-type: application/json"
#> [4] "server: cloudflare"
#> [5] "nel: {\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"
#> [6] "access-control-allow-origin: *"
#> [7] "access-control-allow-credentials: true"
#> [8] "x-powered-by: Flask"
#> [9] "x-processed-time: 0"
#> [10] "cf-cache-status: DYNAMIC"
#> [11] "report-to: {\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=UAYTjiEXe%2BHBlll8BOg3Ueawhd8APx0Vg413YnLqbZjY8HmIDKxluY6HJ93MVn6kH1Z7TMjkxJhsMh9CfoZ8%2BW3z1Zhx9o8IQw%3D%3D\"}]}"
#> [12] "content-encoding: zstd"
#> [13] "cf-ray: 98b06aeaed2a90e5-YYZ"
#> [14] "alt-svc: h3=\":443\"; ma=86400"
parse_headers(req$headers, multiple = TRUE)
#> [[1]]
#> [1] "HTTP/2 302 "
#> [2] "date: Tue, 07 Oct 2025 21:16:06 GMT"
#> [3] "content-type: text/html; charset=utf-8"
#> [4] "server: cloudflare"
#> [5] "nel: {\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"
#> [6] "location: /relative-redirect/2"
#> [7] "access-control-allow-origin: *"
#> [8] "access-control-allow-credentials: true"
#> [9] "x-powered-by: Flask"
#> [10] "x-processed-time: 0"
#> [11] "cf-cache-status: DYNAMIC"
#> [12] "report-to: {\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=GRqyyLQCZfDQoRsk2IGNQGGrGAJExc929zwVCC4Fof0WxCNQ%2BLYtdLrrzphEoXQWfiPfSkLEQq65JXOIb1EUg3c94BJP5hIwDg%3D%3D\"}]}"
#> [13] "cf-ray: 98b06aea1a8d90e5-YYZ"
#> [14] "alt-svc: h3=\":443\"; ma=86400"
#>
#> [[2]]
#> [1] "HTTP/2 302 "
#> [2] "date: Tue, 07 Oct 2025 21:16:06 GMT"
#> [3] "content-type: text/html; charset=utf-8"
#> [4] "server: cloudflare"
#> [5] "nel: {\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"
#> [6] "location: /relative-redirect/1"
#> [7] "access-control-allow-origin: *"
#> [8] "access-control-allow-credentials: true"
#> [9] "x-powered-by: Flask"
#> [10] "x-processed-time: 0"
#> [11] "cf-cache-status: DYNAMIC"
#> [12] "report-to: {\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=LoE032uEtRoY6dXi3FIUjcgVQHSyI5JwT9qtk3laV6xlAhx9yUq3oEXUUGduTkYluV1t4BkCOilDN4EgJKfugwFfJ56jSk3tFQ%3D%3D\"}]}"
#> [13] "cf-ray: 98b06aea5b6690e5-YYZ"
#> [14] "alt-svc: h3=\":443\"; ma=86400"
#>
#> [[3]]
#> [1] "HTTP/2 302 "
#> [2] "date: Tue, 07 Oct 2025 21:16:06 GMT"
#> [3] "content-type: text/html; charset=utf-8"
#> [4] "server: cloudflare"
#> [5] "nel: {\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"
#> [6] "location: /get"
#> [7] "access-control-allow-origin: *"
#> [8] "access-control-allow-credentials: true"
#> [9] "x-powered-by: Flask"
#> [10] "x-processed-time: 0"
#> [11] "cf-cache-status: DYNAMIC"
#> [12] "report-to: {\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=ueWUDnb34LqiGvCm1ml3NQi3Y%2B8obF8WtXcBoxP4fvQfPjMXodBb0K86oelzdb3Rz77GvcOM%2FAHEBYphg%2Bl%2FobssiiTJ2winBQ%3D%3D\"}]}"
#> [13] "cf-ray: 98b06aeaac4190e5-YYZ"
#> [14] "alt-svc: h3=\":443\"; ma=86400"
#>
#> [[4]]
#> [1] "HTTP/2 200 "
#> [2] "date: Tue, 07 Oct 2025 21:16:06 GMT"
#> [3] "content-type: application/json"
#> [4] "server: cloudflare"
#> [5] "nel: {\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"
#> [6] "access-control-allow-origin: *"
#> [7] "access-control-allow-credentials: true"
#> [8] "x-powered-by: Flask"
#> [9] "x-processed-time: 0"
#> [10] "cf-cache-status: DYNAMIC"
#> [11] "report-to: {\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=UAYTjiEXe%2BHBlll8BOg3Ueawhd8APx0Vg413YnLqbZjY8HmIDKxluY6HJ93MVn6kH1Z7TMjkxJhsMh9CfoZ8%2BW3z1Zhx9o8IQw%3D%3D\"}]}"
#> [12] "content-encoding: zstd"
#> [13] "cf-ray: 98b06aeaed2a90e5-YYZ"
#> [14] "alt-svc: h3=\":443\"; ma=86400"
#>
# Parse into named list
parse_headers_list(req$headers)
#> $date
#> [1] "Tue, 07 Oct 2025 21:16:06 GMT"
#>
#> $`content-type`
#> [1] "application/json"
#>
#> $server
#> [1] "cloudflare"
#>
#> $nel
#> [1] "{\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"
#>
#> $`access-control-allow-origin`
#> [1] "*"
#>
#> $`access-control-allow-credentials`
#> [1] "true"
#>
#> $`x-powered-by`
#> [1] "Flask"
#>
#> $`x-processed-time`
#> [1] "0"
#>
#> $`cf-cache-status`
#> [1] "DYNAMIC"
#>
#> $`report-to`
#> [1] "{\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=UAYTjiEXe%2BHBlll8BOg3Ueawhd8APx0Vg413YnLqbZjY8HmIDKxluY6HJ93MVn6kH1Z7TMjkxJhsMh9CfoZ8%2BW3z1Zhx9o8IQw%3D%3D\"}]}"
#>
#> $`content-encoding`
#> [1] "zstd"
#>
#> $`cf-ray`
#> [1] "98b06aeaed2a90e5-YYZ"
#>
#> $`alt-svc`
#> [1] "h3=\":443\"; ma=86400"
#>