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

# Get jurisdiction configuration

GET https://staging.cail.health/v1/jurisdictions/{id}

Returns operational configuration for a jurisdiction: display name, emergency and non-emergency numbers, default locale and timezone, the member home-screen `explore` content (primary CTA and awareness cards), and the searchable provider type catalogue. Operators additionally receive emergency-department cost estimates used for diversion-savings reporting. Both audiences may call the endpoint without organisation scoping; jurisdiction config is treated as public-within-the-platform.

Reference: https://docs.cail.health/api-references/api-reference/understand-coverage/get-jurisdiction-config

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: cail-api
  version: 1.0.0
paths:
  /v1/jurisdictions/{id}:
    get:
      operationId: get-jurisdiction-config
      summary: Get jurisdiction configuration
      description: >-
        Returns operational configuration for a jurisdiction: display name,
        emergency and non-emergency numbers, default locale and timezone, the
        member home-screen `explore` content (primary CTA and awareness cards),
        and the searchable provider type catalogue. Operators additionally
        receive emergency-department cost estimates used for diversion-savings
        reporting. Both audiences may call the endpoint without organisation
        scoping; jurisdiction config is treated as public-within-the-platform.
      tags:
        - subpackage_understandCoverage
      parameters:
        - name: id
          in: path
          description: Stable identifier of the jurisdiction.
          required: true
          schema:
            type: string
        - name: Authorization
          in: header
          description: Bearer authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: The jurisdiction configuration.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JurisdictionConfigResponse'
servers:
  - url: https://staging.cail.health
    description: https://staging.cail.health
components:
  schemas:
    JurisdictionPrimaryCta:
      type: object
      properties:
        title:
          type: string
          description: Primary call-to-action title.
        subtitle:
          type: string
          description: Subtitle below the primary CTA.
        actionType:
          type: string
          description: CTA action discriminator.
        planDefinitionId:
          type: string
          description: Pathway definition to launch when the CTA is tapped.
      required:
        - title
        - subtitle
        - actionType
      title: JurisdictionPrimaryCta
    JurisdictionAwarenessCard:
      type: object
      properties:
        id:
          type: string
          description: Stable identifier of the card.
        title:
          type: string
          description: Card title.
        subtitle:
          type: string
          description: Card subtitle.
        icon:
          type: string
          description: Icon code for the card.
        color:
          type: string
          description: Theme color for the card.
        actionType:
          type: string
          description: Action discriminator.
        actionValue:
          type: string
          description: Action value (e.g., URL).
      required:
        - id
        - title
        - subtitle
        - icon
        - color
        - actionType
      title: JurisdictionAwarenessCard
    JurisdictionExplore:
      type: object
      properties:
        primaryCta:
          $ref: '#/components/schemas/JurisdictionPrimaryCta'
        awarenessCards:
          type: array
          items:
            $ref: '#/components/schemas/JurisdictionAwarenessCard'
          description: Awareness cards rendered on the member home screen.
      required:
        - primaryCta
        - awarenessCards
      title: JurisdictionExplore
    JurisdictionProviderType:
      type: object
      properties:
        code:
          type: string
          description: Provider type code.
        display:
          type: string
          description: Display label.
        category:
          type: string
          description: Grouping category.
        icon:
          type: string
          description: Icon code.
        searchable:
          type: boolean
          description: True when this type appears in member search.
        actionType:
          type: string
          description: Optional action discriminator.
        actionValue:
          type: string
          description: Optional action payload.
        waitTimeMin:
          type: number
          format: double
          description: Lower expected wait time, minutes.
        waitTimeMax:
          type: number
          format: double
          description: Upper expected wait time, minutes.
        notes:
          type: string
          description: Free-text notes.
      required:
        - code
        - display
        - category
        - icon
        - searchable
      title: JurisdictionProviderType
    JurisdictionEdCostEstimate:
      type: object
      properties:
        code:
          type: string
          description: Cost code.
        display:
          type: string
          description: Display label.
        amount:
          type: number
          format: double
          description: Per-event cost in the jurisdiction currency.
      required:
        - code
        - display
        - amount
      title: JurisdictionEdCostEstimate
    JurisdictionEdCostEstimates:
      type: object
      properties:
        currency:
          type: string
          description: ISO 4217 currency code.
        estimates:
          type: array
          items:
            $ref: '#/components/schemas/JurisdictionEdCostEstimate'
          description: Cost estimates for emergency-department-related events.
      required:
        - currency
        - estimates
      title: JurisdictionEdCostEstimates
    JurisdictionConfigResponse:
      type: object
      properties:
        id:
          type: string
          description: Stable identifier of the jurisdiction.
        code:
          type: string
          description: Jurisdiction code.
        displayName:
          type: string
          description: Display name in the request locale.
        emergencyNumber:
          type: string
          description: Emergency phone number.
        nonEmergencyNumber:
          type: string
          description: Non-emergency phone number.
        locale:
          type: string
          description: Default locale for the jurisdiction.
        timezoneDefault:
          type: string
          description: Default timezone.
        explore:
          $ref: '#/components/schemas/JurisdictionExplore'
        providerTypes:
          type: array
          items:
            $ref: '#/components/schemas/JurisdictionProviderType'
          description: Provider types members can choose from in search.
        edCostEstimates:
          $ref: '#/components/schemas/JurisdictionEdCostEstimates'
          description: >-
            Emergency-department cost estimates. Present in the operator view;
            absent for the member audience.
      required:
        - id
        - code
        - displayName
        - emergencyNumber
        - locale
        - timezoneDefault
        - explore
        - providerTypes
      title: JurisdictionConfigResponse
  securitySchemes:
    firebaseBearer:
      type: http
      scheme: bearer
    auth0Bearer:
      type: http
      scheme: bearer

```

## Examples



**Response**

```json
{
  "id": "jur_uk_eng",
  "code": "uk-eng",
  "displayName": "NHS England",
  "emergencyNumber": "999",
  "locale": "en-GB",
  "timezoneDefault": "Europe/London",
  "explore": {
    "primaryCta": {
      "title": "Find care now",
      "subtitle": "Answer a few quick questions to get routed.",
      "actionType": "start_navigation_session",
      "planDefinitionId": "a1b2c3d4-e5f6-4789-9abc-def012345678"
    },
    "awarenessCards": []
  },
  "providerTypes": [
    {
      "code": "pharmacy",
      "display": "Pharmacy",
      "category": "community-care",
      "icon": "pharmacy",
      "searchable": true
    }
  ],
  "nonEmergencyNumber": "111"
}
```

**SDK Code**

```python NHS England jurisdiction config
import requests

url = "https://staging.cail.health/v1/jurisdictions/jur_uk_eng"

headers = {"Authorization": "Bearer <token>"}

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

print(response.json())
```

```javascript NHS England jurisdiction config
const url = 'https://staging.cail.health/v1/jurisdictions/jur_uk_eng';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

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

```go NHS England jurisdiction config
package main

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

func main() {

	url := "https://staging.cail.health/v1/jurisdictions/jur_uk_eng"

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

	req.Header.Add("Authorization", "Bearer <token>")

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

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

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

}
```

```ruby NHS England jurisdiction config
require 'uri'
require 'net/http'

url = URI("https://staging.cail.health/v1/jurisdictions/jur_uk_eng")

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

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

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

```java NHS England jurisdiction config
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://staging.cail.health/v1/jurisdictions/jur_uk_eng")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php NHS England jurisdiction config
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://staging.cail.health/v1/jurisdictions/jur_uk_eng', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

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

```csharp NHS England jurisdiction config
using RestSharp;

var client = new RestClient("https://staging.cail.health/v1/jurisdictions/jur_uk_eng");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift NHS England jurisdiction config
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://staging.cail.health/v1/jurisdictions/jur_uk_eng")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

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()
```