curl --request POST \
--url https://app.keupera.com/api/v1/connect \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"type": "framer"
}
'{
"success": true
}{
"error": "Missing required field: keywords"
}{
"error": "Invalid or missing API key"
}Account & Utilities
Connect a CMS integration
Registers a CMS integration against your API key. Used by the Framer plugin and WordPress connector.
POST
/
connect
curl --request POST \
--url https://app.keupera.com/api/v1/connect \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"type": "framer"
}
'{
"success": true
}{
"error": "Missing required field: keywords"
}{
"error": "Invalid or missing API key"
}Authorizations
Pass your Keupera API key as a Bearer token: Authorization: Bearer YOUR_KEUPERA_API_KEY. Generate keys from Account → API Keys in your Keupera dashboard.
Body
application/json
Response
Integration connected.
Example:
true