---
title: "NUXT_E7001"
description: "Payload URL includes a hostname."
canonical_url: "https://nuxt.com/docs/4.x/errors/e7001"
---
# E7001

A payload URL was requested with a full URL that includes a hostname. Payloads are always served from the same origin as the app, so a URL with a hostname points outside the app and is rejected.

## Resolution

Pass a relative path instead of a full URL:

```ts
loadPayload('/some-page')
```

<read-more to="https://nuxt.com/docs/4.x/api/composables/use-nuxt-app#payload">



</read-more>


## Sitemap

See the full [sitemap](https://nuxt.com/sitemap.md) for all pages.
