v1

latestOpenAPI 3.1.0MIT2026-07-173438118.7 KB
Outrank

Process Outrank webhook

Security

Validates Bearer token from Authorization header against OUTRANK_ACCESS_TOKEN environment variable

Errors

Returns 401 if access token is invalid or missing, 500 for processing errors

post/api/outrank/webhook

Request body

dataValue

Flexible JSON value that can be an object, array, string, number, boolean, or null

eventTypestring nullable

Event type from Outrank

Example request

{
  "data": {
    "recommendations": [
      "Improve meta descriptions",
      "Add alt text to images"
    ],
    "score": 85
  },
  "eventType": "analysis_complete"
}

Response

Webhook processed successfully

messagestring required

Success message

Example response

{
  "message": "Webhook processed successfully"
}