Skip to content

Latest commit

 

History

History
83 lines (62 loc) · 1.47 KB

diffbot.md

File metadata and controls

83 lines (62 loc) · 1.47 KB
description
Seamlessly integrate Diffbot with your favorite APIs, databases, and programming languages, using WayScript.

Diffbot

Turn websites into data in seconds.

{% hint style="info" %} Check out Diffbot on GitHub. {% endhint %}

📰 Extract Article Text

📥 Inputs

  • URL - the website link you want to pull text from. (E.g. wayscript.com)

📤 Output

Article = {
    title : String, 
    text : String, 
    date : Date, 
    html : Html, 
    tags : [
        String,
    ],
    icon : Url,
    url : Url, 
    type : String, 
}

🛒 Data from any Shopping or e-Commerce Product Page

📥 Inputs

  • URL - the e-commerce website link you want to pull text from.

📤 Output

Product = {
    title : String, 
    brand : String, 
    price : Float, 
    sku : String, 
    description : String, 
    image_url : Url, 
    availability : Bool,
}

****

💬 Forum/Discussion/Product Conversations and Reviews

📃 This mode, pulls lists of all of the posts on the forum page.

📥 Inputs

  • URL - the forum link you want to pull text from.

📤 Output

Posts = [
    {
        title : String, 
        author : String, 
        text : String, 
        url : Url, 
        date : Date,
        html : Html, 
        language : String, 
    },
]