---
title: "Drips data over a duration after an optional initial delay."
url: "https://seriousmonkeybusiness.shermett.me/apis/httpbinorg-0/versions/cf5887fc-2a8e-440f-bf06-cb4d956f625f/operations/get_drip"
---

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

# Drips data over a duration after an optional initial delay.

`GET` `/drip`

Operation ID: `get_drip`

## Query parameters

- `duration` (number, optional) - The amount of time (in seconds) over which to drip each byte
- `numbytes` (integer, optional) - The number of bytes to respond with
- `code` (integer, optional) - The response code that will be returned
- `delay` (number, optional) - The amount of time (in seconds) to delay before responding

## Responses

- `200` - A dripped response.

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: httpbin.org
  version: 0.9.2
servers:
  - url: https://httpbin.org
paths:
  /drip:
    get:
      parameters:
        - description: The amount of time (in seconds) over which to drip each byte
          in: query
          name: duration
          required: false
          schema:
            default: 2
            type: number
        - description: The number of bytes to respond with
          in: query
          name: numbytes
          required: false
          schema:
            default: 10
            type: integer
        - description: The response code that will be returned
          in: query
          name: code
          required: false
          schema:
            default: 200
            type: integer
        - description: The amount of time (in seconds) to delay before responding
          in: query
          name: delay
          required: false
          schema:
            default: 2
            type: number
      responses:
        "200":
          description: A dripped response.
      summary: Drips data over a duration after an optional initial delay.
      tags:
        - Dynamic data
      operationId: get_drip
```
