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

# Get JSON Web Key (JWK) for JWT Validation

`GET /v0/jwt_validation`

Fetch JSON Web Key for a Skydio-issued JWT. See [Webhook Validation](https://apidocs.skydio.com/reference/webhook_validation) for JWT validation corresponding to webhook requests.

## 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 authenticity of a Skydio-issued JWT

- object
  - `data` object, required — Can be used to validate the authenticity of a Skydio-issued JWT
    - `jwk` object, required
      - `alg` string, required — Algorithm used for the token
      - `e` string, required — RSA public exponent
      - `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
      - `n` string, required — RSA modulus
  - `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)
