> For the complete documentation index, see [llms.txt](https://docs.facephi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.facephi.com/docs.facephi-en/products/landing/metodos-de-integracion/url-directa.md).

# Direct URL

### Method without extra information

In this case, the process is much simpler: the `apiKey` is provided by us automatically to the destination page without the need to generate it; you only have to integrate our gateway URL into the Flow you want. The data will be provided to the client via a webhook.

Output URL: The client provides the address to finish

**Example**:

```html
<button type="button" onclick="goToLanding()">Register</button>

<script>
// Custom method to navigate to SDK Landing
function goToLanding() {
    navigate('https://facephi-landing-url.com');
}
</script>
```

Once the Flow has finished, the page will be redirected to the URL previously specified by the client, so no additional configuration is required.
