# Get a page's JSON-LD

**Publié le** : 2026-05-12
**Catégorie** : Pages & Site Blocks

## `GET /pages/:slug/json-ld`

**Get a page's JSON-LD**

Return the JSON-LD structured-data graph for a single Site Builder
page, served as `application/ld+json`. Same graph as the
`structuredData.graph` field on `GET /pages/{slug}`, but exposed
directly so search engines and metadata consumers can fetch it
without parsing the full page payload.

### Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `slug` | path | string | Yes | URL-friendly identifier, unique per site and locale |


### Responses

| Status | Description |
| --- | --- |
| `200` | Successful response |
| `404` | Not found |


> **Notes:** Content type: `application/ld+json`. Cache:
> `Cache-Control: public, max-age=300`. Rate-limit bucket: general.

### Examples

```curl
curl "https://api.lynkow.com/public/{siteId}/pages/pricing/json-ld?locale=en"
```

### Response Example

```json
"{\n  \"@context\": \"https://schema.org\",\n  \"@graph\": [\n    {\n      \"@type\": \"WebPage\",\n      \"name\": \"Pricing\",\n      \"url\": \"https://docs.acme.io/pricing\",\n      \"inLanguage\": \"en\"\n    },\n    {\n      \"@type\": \"Organization\",\n      \"name\": \"Acme Inc.\",\n      \"url\": \"https://acme.io\"\n    }\n  ]\n}\n"
```

---