---
title: "Generate a page containing n links to other pages which do the same."
url: "https://seriousmonkeybusiness.shermett.me/apis/httpbinorg-0/versions/cf5887fc-2a8e-440f-bf06-cb4d956f625f/operations/get_links_n__offset"
---

> Full API specification: https://seriousmonkeybusiness.shermett.me/apis/httpbinorg-0/versions/cf5887fc-2a8e-440f-bf06-cb4d956f625f.md

# Generate a page containing n links to other pages which do the same.

`GET` `/links/{n}/{offset}`

Operation ID: `get_links_n__offset`

## Path parameters

- `n` (integer, required)
- `offset` (integer, required)

## Responses

- `200` - HTML links.

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: httpbin.org
  version: 0.9.2
servers:
  - url: https://httpbin.org
paths:
  /links/{n}/{offset}:
    get:
      parameters:
        - in: path
          name: n
          required: true
          schema:
            type: integer
        - in: path
          name: offset
          required: true
          schema:
            type: integer
      responses:
        "200":
          description: HTML links.
      summary: Generate a page containing n links to other pages which do the same.
      tags:
        - Dynamic data
      operationId: get_links_n__offset
```
