---
title: "Get JSON Web Key (JWK) for Webhook Validation"
method: GET
path: "/webhook_validation"
tags: ["Webhook Validation"]
---

# Get JSON Web Key (JWK) for Webhook Validation

`GET /webhook_validation`

Fetch JSON Web Key for JWT corresponding to a webhook request

## Query parameters

- `key_id` string, uuid — Uniquely identifies a key; corresponds to the 'kid' claim in the Skydio-issued JWT

## Response `200`

Can be used to validate the JWT in a webhook payload to verify request came from Skydio

- object
  - `data` object, required — Can be used to validate the JWT in a webhook payload to verify request came from Skydio
    - `jwk` object, required
      - `alg` string, required — Algorithm used for the token
      - `k` string, required — Secret key used to verify the JWT
      - `kid` string, uuid, required — Short for 'key id', uniquely identifies a key
      - `kty` string, required — Short for 'key type', represents the family of algorithm used for the token
  - `error_message` string
  - `meta` object, required
    - `time` number
  - `skydio_error_code` integer, required
  - `status_code` integer, required

---

[API](https://skmtc.net/skydio/apis/skydio-cloud-api.md) · [All operations](https://skmtc.net/skydio/apis/skydio-cloud-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/skydio/skydio-cloud-api/revisions/0f746b116483/schema)
