> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://api-docs.zippd.com/llms.txt.
> For full documentation content, see https://api-docs.zippd.com/llms-full.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://api-docs.zippd.com/_mcp/server.

# Retrieve All Webhooks

GET https://sandbox-api.deliveryapp.com/api/v1/webhooks

Reference: https://api-docs.zippd.com/webhooks/get-webhooks

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: collection
  version: 1.0.0
paths:
  /webhooks:
    get:
      operationId: get-webhooks
      summary: Retrieve All Webhooks
      tags:
        - subpackage_webhooks
      parameters:
        - name: Authorization
          in: header
          description: ''
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Webhooks_get-webhooks_Response_200'
servers:
  - url: https://sandbox-api.deliveryapp.com/api/v1
components:
  schemas:
    Webhook:
      type: object
      properties:
        id:
          type: integer
          description: The unique ID of the webhook.
        url:
          type: string
          format: uri
          description: The webhook URL that was provided at creation.
        created_at:
          type: string
          format: date-time
          description: >-
            The date and time that the webhook was created. Format `YYY-MM-DD
            HH:MM:SS.`
      title: Webhook
    ListResponseLinksObject:
      type: object
      properties:
        first:
          type: string
          description: URL to the first page of the listing results.
        last:
          type: string
          description: URL to the last page of the listing results.
        prev:
          type:
            - string
            - 'null'
          description: >-
            URL to the previous page of the listing results, based on the
            current page requested.
        next:
          type:
            - string
            - 'null'
          description: >-
            URL to the next page of the listing results, based on the current
            page requested.
      title: ListResponseLinksObject
    ListResponseMetaObject:
      type: object
      properties:
        current_page:
          type: integer
          description: The current page of the pagination.
        last_page:
          type: integer
          description: The very last available page of the pagination.
        per_page:
          type: integer
          description: The number of items listed per page.
        from:
          type: integer
          description: >-
            The item index at which this page of the listing starts, relative to
            the total number of items.
        to:
          type: integer
          description: >-
            The item index at which this page of the listing ends, relative to
            the total number of items.
        total:
          type: integer
          description: The total number of items that the request found.
        path:
          type: string
          description: The canonical path for the resource type being listed.
      title: ListResponseMetaObject
    Webhooks_get-webhooks_Response_200:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Webhook'
          description: >-
            This array will be empty if there are now webhooks stored against
            the account.
        links:
          $ref: '#/components/schemas/ListResponseLinksObject'
        meta:
          $ref: '#/components/schemas/ListResponseMetaObject'
      title: Webhooks_get-webhooks_Response_200
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: ''

```

## SDK Code Examples

```python
import requests

url = "https://sandbox-api.deliveryapp.com/api/v1/webhooks"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript
const url = 'https://sandbox-api.deliveryapp.com/api/v1/webhooks';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://sandbox-api.deliveryapp.com/api/v1/webhooks"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://sandbox-api.deliveryapp.com/api/v1/webhooks")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://sandbox-api.deliveryapp.com/api/v1/webhooks")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://sandbox-api.deliveryapp.com/api/v1/webhooks', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://sandbox-api.deliveryapp.com/api/v1/webhooks");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://sandbox-api.deliveryapp.com/api/v1/webhooks")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```