description |
---|
Seamlessly integrate Diffbot with your favorite APIs, databases, and programming languages, using WayScript. |
{% hint style="info" %} Check out Diffbot on GitHub. {% endhint %}
- URL - the website link you want to pull text from. (E.g. wayscript.com)
Article = {
title : String,
text : String,
date : Date,
html : Html,
tags : [
String,
],
icon : Url,
url : Url,
type : String,
}
- URL - the e-commerce website link you want to pull text from.
Product = {
title : String,
brand : String,
price : Float,
sku : String,
description : String,
image_url : Url,
availability : Bool,
}
****
📃 This mode, pulls lists of all of the posts on the forum page.
- URL - the forum link you want to pull text from.
Posts = [
{
title : String,
author : String,
text : String,
url : Url,
date : Date,
html : Html,
language : String,
},
]