Skip to main content
GET
/
v1
/
policies
/
{node_id}
/
download-url
Get Policy Download Url
curl --request GET \
  --url https://api-sandbox.penelope.health/v1/policies/{node_id}/download-url \
  --header 'x-api-key: <api-key>'
{
  "url": "https://us-health-insurance-kb.s3.us-east-2.amazonaws.com/...",
  "content_type": "application/pdf",
  "filename": "uhc_US_MP.002.28_2026-01-01.pdf"
}

Authorizations

x-api-key
string
header
required

Path Parameters

node_id
string
required

Query Parameters

variant
enum<string>
default:display

'display' returns the original file; 'text' returns an LLM-optimized markdown version

Available options:
display,
text

Response

Successful Response

url
string
required

Presigned S3 URL to download the policy file (expires after 1 hour)

Example:

"https://us-health-insurance-kb.s3.us-east-2.amazonaws.com/..."

content_type
enum<string>
required

MIME type of the file

Available options:
application/pdf,
text/html,
text/markdown
Example:

"application/pdf"

filename
string
required

Suggested filename for download

Example:

"uhc_US_MP.002.28_2026-01-01.pdf"