> ## Documentation Index
> Fetch the complete documentation index at: https://docs.prosights.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Authentication

> Secure access to the ProSights APIs

To create an API key, navigate to [https://prism.prosights.co/app/api-keys](https://prism.prosights.co/app/api-keys) or reach out to [support@prosights.co](mailto:support@prosights.co) .

Provide the API Key on the request header `X-Prosights-Api-Key` like  `X-Prosights-Api-Key:  {token}`.

```bash theme={null}
curl --request POST \
  --url https://prism-api.prosights.co/enterprise-api/recreate/ \
  --header 'Content-Type: multipart/form-data' \
  --header 'X-Prosights-Api-Key: <api-key>' \
  --form 'selected_pages=<string>' \
  --form is_xls_process_charts_enabled=false \
  --form is_xls_process_tables_enabled=true \
  --form is_ppt_process_enabled=false \
  --form table_clustering_mode=page \
  --form 'metadata_json_str=<string>' \
  --form file=@example-file
```
