1
0
mirror of synced 2026-01-07 18:06:03 -05:00
Files
airbyte/docs/integrations/sources/http-request.md
2021-01-17 07:32:24 +11:00

28 lines
710 B
Markdown

# HTTP Request
## Overview
This source allows you to make any http request an Airbyte source! On each sync, this source makes a single http request to the provided URL. Whatever json body is returned is written to the destination.
#### Output schema
It contains one stream: `data`. That stream will contain one record which is the json blob returned by the http request.
#### Data type mapping
`data` is a json blob.
#### Features
| Feature | Supported? |
| :--- | :--- |
| Full Refresh Sync | Yes |
| Incremental Sync | Coming soon |
### Getting started
#### Setup guide
Provide a url, http\_method, \(optional\) headers, \(optional\) request body. The source will make exactly this http request.