aseemann/pihole-api-client

The Pi-hole API is organized around [REST](http://en.wikipedia.org/wiki/Representational_State_Transfer). Our API has predictable resource-oriented URLs, accepts and returns reliable UTF-8 [JavaScript Object Notation (JSON)-encoded](http://www.json.org/) data for all API responses, and uses standard

1.0.0 2025-04-01 15:49 UTC

This package is auto-updated.

Last update: 2025-04-01 15:49:39 UTC


README

The Pi-hole API is organized around REST. Our API has predictable resource-oriented URLs, accepts and returns reliable UTF-8 JavaScript Object Notation (JSON)-encoded data for all API responses, and uses standard HTTP response codes and verbs. Most (but not all) endpoints require authentication. API endpoints requiring authentication will fail with code 401 Unauthorized when used outside a valid session.

For more information, please visit https://discourse.pi-hole.net.

Installation & Usage

Requirements

PHP 8.1 and later.

Composer

To install the bindings via Composer, add the following to composer.json:

{
  "repositories": [
    {
      "type": "vcs",
      "url": "https://github.com/aseemann/pihole-api-client.git"
    }
  ],
  "require": {
    "aseemann/pihole-api-client": "*@dev"
  }
}

Then run composer install

Manual Installation

Download the files and include autoload.php:

<?php
require_once('/path/to/aseemann/pihole-api-client/vendor/autoload.php');

Getting Started

Please follow the installation procedure and then run the following:

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



// Configure API key authorization: x_header_sid
$config = Aseemann\PiholeApi\Configuration::getDefaultConfiguration()->setApiKey('X-FTL-SID', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Aseemann\PiholeApi\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-FTL-SID', 'Bearer');

// Configure API key authorization: query_sid
$config = Aseemann\PiholeApi\Configuration::getDefaultConfiguration()->setApiKey('sid', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Aseemann\PiholeApi\Configuration::getDefaultConfiguration()->setApiKeyPrefix('sid', 'Bearer');

// Configure API key authorization: cookie_sid
$config = Aseemann\PiholeApi\Configuration::getDefaultConfiguration()->setApiKey('sid', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Aseemann\PiholeApi\Configuration::getDefaultConfiguration()->setApiKeyPrefix('sid', 'Bearer');

// Configure API key authorization: header_sid
$config = Aseemann\PiholeApi\Configuration::getDefaultConfiguration()->setApiKey('sid', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Aseemann\PiholeApi\Configuration::getDefaultConfiguration()->setApiKeyPrefix('sid', 'Bearer');


$apiInstance = new Aseemann\PiholeApi\Api\ActionsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);

try {
    $result = $apiInstance->actionFlusharp();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ActionsApi->actionFlusharp: ', $e->getMessage(), PHP_EOL;
}

API Endpoints

All URIs are relative to https://pi.hole:443/api

ClassMethodHTTP requestDescription
ActionsApiactionFlusharpPOST /action/flush/arpFlush the network table
ActionsApiactionFlushlogsPOST /action/flush/logsFlush the DNS logs
ActionsApiactionGravityPOST /action/gravityRun gravity
ActionsApiactionRestartdnsPOST /action/restartdnsRestart pihole-FTL
AuthenticationApiaddAppGET /auth/appCreate new application password
AuthenticationApiaddAuthPOST /authSubmit password for login
AuthenticationApideleteAuthSessionDELETE /auth/session/{id}Delete session by ID
AuthenticationApideleteGroupsDELETE /authDelete session
AuthenticationApigetAuthGET /authCheck if authentication is required
AuthenticationApigetAuthSessionsGET /auth/sessionsList of all current sessions
AuthenticationApigetAuthTotpGET /auth/totpSuggest new TOTP credentials
ClientManagementApiaddClientPOST /clientsAdd new client
ClientManagementApibatchDeleteClientsPOST /clients:batchDeleteDelete multiple clients
ClientManagementApideleteClientDELETE /clients/{client}Delete client
ClientManagementApigetClientSuggestionsGET /clients/_suggestionsGet client suggestions
ClientManagementApigetClientsGET /clients/{client}Get clients
ClientManagementApireplaceClientPUT /clients/{client}Replace client
DHCPApideleteDhcpDELETE /dhcp/leases/{ip}Remove DHCP lease
DHCPApigetDhcpGET /dhcp/leasesGet currently active DHCP leases
DNSControlApigetBlockingGET /dns/blockingGet current blocking status
DNSControlApisetBlockingPOST /dns/blockingChange current blocking status
DocumentationApigetDocsGET /docsGet the embedded API documentation rendered as HTML
DomainManagementApiaddDomainPOST /domains/{type}/{kind}Add new domain
DomainManagementApibatchDeleteDomainsPOST /domains:batchDeleteDelete multiple domains
DomainManagementApideleteDomainDELETE /domains/{type}/{kind}/{domain}Delete domain
DomainManagementApigetDomainsGET /domains/{type}/{kind}/{domain}Get domain
DomainManagementApireplaceDomainPUT /domains/{type}/{kind}/{domain}Replace domain
FTLInformationApideleteMessageDELETE /info/messages/{message_id}Delete Pi-hole diagnosis message
FTLInformationApigetClientGET /info/clientGet information about requesting client
FTLInformationApigetDbinfoGET /info/databaseGet info about long-term database
FTLInformationApigetDnsLogGET /logs/dnsmasqGet DNS log content
FTLInformationApigetEndpointsGET /endpointsGet list of available API endpoints
FTLInformationApigetFtlLogGET /logs/ftlGet DNS log content
FTLInformationApigetFtlinfoGET /info/ftlGet info about various ftl parameters
FTLInformationApigetHostinfoGET /info/hostGet info about various host parameters
FTLInformationApigetLogininfoGET /info/loginLogin page related information
FTLInformationApigetMessagesGET /info/messagesGet Pi-hole diagnosis messages
FTLInformationApigetMessagesCountGET /info/messages/countGet count of Pi-hole diagnosis messages
FTLInformationApigetMetricsinfoGET /info/metricsGet metrics info
FTLInformationApigetSensorsGET /info/sensorsGet info about various sensors
FTLInformationApigetSysteminfoGET /info/systemGet info about various system parameters
FTLInformationApigetVersionGET /info/versionGet Pi-hole version
FTLInformationApigetWebserverLogGET /logs/webserverGet DNS log content
GroupManagementApiaddGroupPOST /groupsAdd new group
GroupManagementApibatchDeleteGroupsPOST /groups:batchDeleteDelete multiple groups
GroupManagementApideleteGroupDELETE /groups/{name}Delete group
GroupManagementApigetGroupsGET /groups/{name}Get groups
GroupManagementApireplaceGroupPUT /groups/{name}Replace group
ListManagementApiaddListPOST /listsAdd new list
ListManagementApibatchDeleteListsPOST /lists:batchDeleteDelete lists
ListManagementApideleteListsDELETE /lists/{list}Delete list
ListManagementApigetListsGET /lists/{list}Get lists
ListManagementApigetSearchGET /search/{domain}Search domains in Pi-hole's lists
ListManagementApireplaceListsPUT /lists/{list}Replace list
MetricsApigetActivityMetricsGET /historyGet activity graph data
MetricsApigetActivityMetricsDatabaseGET /history/databaseGet activity graph data (long-term data)
MetricsApigetClientMetricsGET /history/clientsGet per-client activity graph data
MetricsApigetClientMetricsDatabaseGET /history/database/clientsGet per-client activity graph data (long-term data)
MetricsApigetMetricsDatabaseQueryTypesGET /stats/database/query_typesGet query types (long-term database)
MetricsApigetMetricsDatabaseSummaryGET /stats/database/summaryGet database content details
MetricsApigetMetricsDatabaseTopClientsGET /stats/database/top_clientsGet top clients (long-term database)
MetricsApigetMetricsDatabaseTopDomainsGET /stats/database/top_domainsGet top domains (long-term database)
MetricsApigetMetricsQueryTypesGET /stats/query_typesGet query types
MetricsApigetMetricsRecentBlockedGET /stats/recent_blockedGet most recently blocked domain
MetricsApigetMetricsSummaryGET /stats/summaryGet overview of Pi-hole activity
MetricsApigetMetricsTopClientsGET /stats/top_clientsGet top clients
MetricsApigetMetricsTopDomainsGET /stats/top_domainsGet top domains
MetricsApigetMetricsUpstreamsGET /stats/upstreamsGet metrics about Pi-hole's upstream destinations
MetricsApigetMetricsUpstreamsDatabaseGET /stats/database/upstreamsGet metrics about Pi-hole's upstream destinations (long-term database)
MetricsApigetQueriesGET /queriesGet queries
MetricsApigetSuggestionsGET /queries/suggestionsGet query filter suggestions
NetworkInformationApideleteDeviceDELETE /network/devices/{device_id}Delete a device from the network table
NetworkInformationApigetGatewayGET /network/gatewayGet info about the gateway of your Pi-hole
NetworkInformationApigetInterfacesGET /network/interfacesGet info about the interfaces of your Pi-hole
NetworkInformationApigetNetworkGET /network/devicesGet info about the devices in your local network as seen by your Pi-hole
NetworkInformationApigetRoutesGET /network/routesGet info about the routes of your Pi-hole
PADDApigetPaddGET /paddGet summarized data for PADD
PiHoleConfigurationApiaddArrayItemPUT /config/{element}/{value}Add config array item
PiHoleConfigurationApideleteArrayItemDELETE /config/{element}/{value}Delete config array item
PiHoleConfigurationApigetConfigGET /configGet current configuration of your Pi-hole
PiHoleConfigurationApigetConfigElemGET /config/{element}Get specific part of current configuration of your Pi-hole
PiHoleConfigurationApigetTeleporterGET /teleporterExport Pi-hole settings
PiHoleConfigurationApipatchConfigPATCH /configChange configuration of your Pi-hole
PiHoleConfigurationApipostTeleporterPOST /teleporterImport Pi-hole settings

Models

Authorization

Authentication schemes defined for the API:

query_sid

  • Type: API key
  • API key parameter name: sid
  • Location: URL query string

cookie_sid

  • Type: API key
  • API key parameter name: sid
  • Location:

header_sid

  • Type: API key
  • API key parameter name: sid
  • Location: HTTP header

x_header_sid

  • Type: API key
  • API key parameter name: X-FTL-SID
  • Location: HTTP header

query_password

  • Type: API key
  • API key parameter name: password
  • Location: URL query string

Tests

To run the tests, use:

composer install
vendor/bin/phpunit

Author

About this package

This PHP package is automatically generated by the OpenAPI Generator project:

  • API version: 6.0
    • Generator version: 7.13.0-SNAPSHOT
  • Build package: org.openapitools.codegen.languages.PhpClientCodegen