mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2025-12-20 01:11:03 +08:00
Some checks failed
build / test (macOS-latest) (push) Has been cancelled
build / test (ubuntu-latest) (push) Has been cancelled
build / test (windows-latest) (push) Has been cancelled
lint / go-lint (push) Has been cancelled
lint / eslint (push) Has been cancelled
build / build-release (push) Has been cancelled
build / notify (push) Has been cancelled
lint / notify (push) Has been cancelled
Squashed commit of the following: commit 5dfdf2aec4951e0483765f4a66091112ab901781 Merge:c4b2a5652594849b5aAuthor: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Sat Nov 1 15:16:17 2025 +0300 Merge branch 'master' into AGDNS-2591-web-start-time commitc4b2a5652eMerge:a0466dd493bebde610Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Fri Oct 31 15:50:34 2025 +0300 Merge branch 'master' into AGDNS-2591-web-start-time commita0466dd49aAuthor: Stanislav Chzhen <s.chzhen@adguard.com> Date: Fri Oct 24 09:47:20 2025 +0300 all: imp code commit5e093562bbAuthor: Stanislav Chzhen <s.chzhen@adguard.com> Date: Thu Oct 23 09:14:32 2025 +0300 all: web start time
AdGuard Home OpenAPI
We are using OpenAPI specification to generate AdGuard Home API specification.
How to edit the API spec
The easiest way would be to use Swagger Editor and just copy/paste the YAML file there.
Changelog
See CHANGELOG.md where we keep track of all non-compatible changes that are being made.
Authentication
If AdGuard Home’s web user is password-protected, a web client must use authentication mechanism when sending requests to server. Basic access authentication is the most simple method: a client must pass Authorization HTTP header along with all requests:
Authorization: Basic BASE64_DATA
Where BASE64_DATA is base64-encoded data for username:password string.