Using MDX
Authentication
You can set authentication parameters to let users use their real API keys.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
You can set authentication parameters to let users use their real API keys.
"api": {
"auth": {
"method": "bearer"
}
}
---
title: "Your page title"
authMethod: "bearer"
---
"api": {
"auth": {
"method": "basic"
}
}
---
title: "Your page title"
authMethod: "basic"
---
"api": {
"auth": {
"method": "key",
"name": "x-api-key"
}
}
---
title: "Your page title"
authMethod: "key"
---
---
title: "Your page title"
authMethod: "none"
---
Was this page helpful?