---
title: "List Networks"
method: GET
path: "/api/v1/networks/"
tags: ["networks"]
---

# List Networks

`GET /api/v1/networks/`

List networks with pagination and optional filtering.

## Query parameters

- `offset` integer
- `limit` integer
- `sort_by` string, nullable
- `sort_dir` 'asc' | 'desc'
- `filter_q` string, nullable

## Response `200`

Successful Response

- NetworkListResponse
  - `data` NetworkResponse[], required
    - `id` string, uuid, required
    - `created_at` string, date-time, required
    - `update_history` unknown[], nullable
      - unknown
    - `filename` string, required
    - `file_size` integer, nullable
    - `file_hash` string, nullable
    - `is_external` boolean
    - `file_path` string, nullable
    - `file_missing` boolean
    - `name` string, nullable
    - `dimensions` DimensionsInfo
      - `timesteps` DimensionInfo, required
        - `count` integer, required
        - `start` string, date-time, nullable
        - `end` string, date-time, nullable
        - `freq` string, nullable
      - `periods` DimensionInfo, required
        - `count` integer, required
        - `start` string, date-time, nullable
        - `end` string, date-time, nullable
        - `freq` string, nullable
      - `scenarios` DimensionInfo, required
        - `count` integer, required
        - `start` string, date-time, nullable
        - `end` string, date-time, nullable
        - `freq` string, nullable
    - `components_count` object, nullable
    - `meta` object, nullable
    - `facets` object, nullable
    - `visibility` 'public' | 'private' — Resource visibility options for access control
    - `owner` UserPublicResponse, required — Minimal public user info for embedding in other responses
      - `id` string, uuid, required
      - `username` string, required
      - `avatar_url` string, nullable
    - `source_run_id` string, uuid, nullable
    - `tags` union[], nullable
      - union
        - string
        - object
  - `meta` NetworkListMeta, required — Extended pagination meta with network-specific fields
    - `total` integer, required
    - `offset` integer, required
    - `limit` integer, required
    - `count` integer, required
    - `owners` UserPublicResponse[], nullable
      - `id` string, uuid, required
      - `username` string, required
      - `avatar_url` string, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/pypsa/apis/pypsa-app.md) · [All operations](https://skmtc.dev/pypsa/apis/pypsa-app/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/pypsa/pypsa-app/revisions/a9fc864817c3/schema)
