2024-06-12 13:28:50 +00:00
(api)=
2022-05-19 23:14:50 +00:00
# Wagtail API
2016-09-22 10:15:18 +00:00
2025-04-15 09:40:46 +00:00
Wagtail includes a built-in API module that provides a public-facing, JSON-formatted API to allow retrieving
2016-09-22 10:15:18 +00:00
content as raw field data. This is useful for cases like serving content to
non-web clients (such as a mobile phone app) or pulling content out of Wagtail
for use in another site.
2022-05-19 23:14:50 +00:00
See [RFC 8: Wagtail API ](https://github.com/wagtail/rfcs/blob/main/text/008-wagtail-api.md#12---stable-and-unstable-versions )
2024-06-12 13:28:50 +00:00
for full details on our stabilization policy.
2016-09-22 10:15:18 +00:00
2025-04-15 09:40:46 +00:00
Wagtail is built on Django, so you can also use other Django solutions for building APIs such as [with Django Ninja ](api_ninja ) or [with GraphQL ](https://github.com/torchbox/wagtail-grapple ).
2022-05-19 23:14:50 +00:00
```{toctree}
---
maxdepth: 2
---
v2/configuration
v2/usage
2025-04-15 09:40:46 +00:00
django-ninja
2022-05-19 23:14:50 +00:00
```