> ## Documentation Index
> Fetch the complete documentation index at: https://geonode.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve Whitelisted IPs

> Returns a list of active whitelisted IPs.




## OpenAPI

````yaml api-reference/ref/retrieve-whitelist-ip.yaml get /configuration/active/whitelisted-ips
openapi: 3.0.3
info:
  title: Active Whitelisted IPs API
  version: 1.0.0
  description: |
    API to retrieve active whitelisted IP addresses.
servers:
  - url: https://app-api.geonode.com/api
security: []
paths:
  /configuration/active/whitelisted-ips:
    get:
      summary: Retrieve Whitelisted IPs
      description: |
        Returns a list of active whitelisted IPs.
      parameters:
        - name: Accept
          in: header
          required: true
          description: Specifies the response format.
          schema:
            type: string
            default: application/json
            enum:
              - application/json
      responses:
        '200':
          description: Successful response containing a list of active whitelisted IPs.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        ip:
                          type: string
                          description: The IP address of the whitelisted entity.
                          example: 161.142.148.150
                        description:
                          type: string
                          description: >-
                            A brief description associated with the whitelisted
                            IP.
                          example: updated-description
                        _id:
                          type: string
                          description: >-
                            The unique identifier assigned to the whitelisted IP
                            entry.
                          example: 67a0a5bbb412ddaf6f139b3b
        '400':
          description: Bad Request - Invalid input.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Invalid parameters provided.
        '401':
          description: Unauthorized - Invalid Credentials.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Unauthorized - Invalid API key or credentials.
        '500':
          description: Internal server error.
      security:
        - BasicAuth: []
components:
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
      description: Basic authentication using `username:password`.

````