> For the complete documentation index, see [llms.txt](https://developerdocs.instructure.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developerdocs.instructure.com/services/canvas/resources/quiz_ip_filters.md).

# Quiz IP Filters

API for accessing quiz IP filters

#### A QuizIPFilter object looks like: <a href="#quizipfilter" id="quizipfilter"></a>

```js
{
  // A unique name for the filter.
  "name": "Current Filter",
  // Name of the Account (or Quiz) the IP filter is defined in.
  "account": "Some Quiz",
  // An IP address (or range mask) this filter embodies.
  "filter": "192.168.1.1/24"
}
```

## [Get available quiz IP filters.](#method.quizzes/quiz_ip_filters.index) <a href="#method.quizzes-quiz_ip_filters.index" id="method.quizzes-quiz_ip_filters.index"></a>

[Quizzes::QuizIpFiltersController#index](https://github.com/instructure/canvas-lms/blob/master/app/controllers/quizzes/quiz_ip_filters_controller.rb)

#### `GET /api/v1/courses/:course_id/quizzes/:quiz_id/ip_filters`

**Scope:** `url:GET|/api/v1/courses/:course_id/quizzes/:quiz_id/ip_filters`

Get a list of available IP filters for this Quiz.

\<b>200 OK\</b> response code is returned if the request was successful.

#### Example Response:

```js
{
  "quiz_ip_filters": [QuizIPFilter]
}
```

***

This documentation is generated directly from the Canvas LMS source code, available [on Github](https://github.com/instructure/canvas-lms).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developerdocs.instructure.com/services/canvas/resources/quiz_ip_filters.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
