> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.cloudraker.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.cloudraker.com/_mcp/server.

# Webhook verification keys

GET https://api.cloudraker.com/v1/webhooks/jwks.json

Serves the public keys you verify webhook delivery signatures against.

Every delivery carries an `x-rk1-signature` header: a compact ES256 JWT whose claims bind the run id, `eventId`, event `type` and a `bodySha256` of the payload, inside a 5-minute `exp` window. Verify the signature with these keys and compare `bodySha256` to the body you received.

This route needs no authentication — key material is public by definition. It is the stable alias, serving the same keys as the older `/process/jwks.json`.

**Learn more:** [Webhooks guide](https://docs.cloudraker.com/developers/webhooks)

Reference: https://docs.cloudraker.com/api/cloud-raker-api/webhooks/webhook-jwks

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: CloudRaker API
  version: 1.0.0
paths:
  /v1/webhooks/jwks.json:
    get:
      operationId: webhook-jwks
      summary: Webhook verification keys
      description: >-
        Serves the public keys you verify webhook delivery signatures against.


        Every delivery carries an `x-rk1-signature` header: a compact ES256 JWT
        whose claims bind the run id, `eventId`, event `type` and a `bodySha256`
        of the payload, inside a 5-minute `exp` window. Verify the signature
        with these keys and compare `bodySha256` to the body you received.


        This route needs no authentication — key material is public by
        definition. It is the stable alias, serving the same keys as the older
        `/process/jwks.json`.


        **Learn more:** [Webhooks
        guide](https://docs.cloudraker.com/developers/webhooks)
      tags:
        - webhooks
      parameters:
        - name: Authorization
          in: header
          description: Bearer authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: JSON Web Key Set (public keys only).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Jwks'
servers:
  - url: https://api.cloudraker.com
    description: Production
  - url: https://api.staging.raker.one
    description: Staging
  - url: https://api.dev.raker.one
    description: Development
components:
  schemas:
    JwksKeysItems:
      type: object
      properties:
        kty:
          type: string
        crv:
          type: string
        x:
          type: string
        'y':
          type: string
        kid:
          type: string
        alg:
          type: string
        use:
          type: string
      required:
        - kty
        - crv
        - x
        - 'y'
        - kid
        - alg
      description: A public key. Private material is never served.
      title: JwksKeysItems
    Jwks:
      type: object
      properties:
        keys:
          type: array
          items:
            $ref: '#/components/schemas/JwksKeysItems'
      required:
        - keys
      title: Jwks
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

```

## Examples



**Request**

```json
{}
```

**Response**

```json
{
  "keys": [
    {
      "kty": "EC",
      "crv": "P-256",
      "x": "f83OJ3D2xF4v7Q1X9Z9v5Q6v7X9Y2Z3A4B5C6D7E8F9G0H1I2J3K4L5M6N7O8P9Q",
      "y": "x_FEzRu9v1X2Y3Z4A5B6C7D8E9F0G1H2I3J4K5L6M7N8O9P0Q1R2S3T4U5V6W7X8Y",
      "kid": "2024-06-01-cloudraker-webhook-key-1",
      "alg": "ES256",
      "use": "sig"
    }
  ]
}
```

**SDK Code**

```python
import requests

url = "https://api.cloudraker.com/v1/webhooks/jwks.json"

payload = {}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.get(url, json=payload, headers=headers)

print(response.json())
```

```javascript
const url = 'https://api.cloudraker.com/v1/webhooks/jwks.json';
const options = {
  method: 'GET',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://api.cloudraker.com/v1/webhooks/jwks.json"

	payload := strings.NewReader("{}")

	req, _ := http.NewRequest("GET", url, payload)

	req.Header.Add("Authorization", "Bearer <token>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://api.cloudraker.com/v1/webhooks/jwks.json")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{}"

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.cloudraker.com/v1/webhooks/jwks.json")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{}")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.cloudraker.com/v1/webhooks/jwks.json', [
  'body' => '{}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://api.cloudraker.com/v1/webhooks/jwks.json");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://api.cloudraker.com/v1/webhooks/jwks.json")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```