

The only AI workspace you need
In today's digital age, the ability to efficiently extract and analyze web content is invaluable for researchers, marketers, developers, and content creators.
Tinq.ai's Article Extractor offers a powerful solution to this challenge, providing both an API and a user-friendly web interface. This tutorial will guide you through using both methods and explore how to integrate the Article Extractor with other Tinq.ai tools for a comprehensive content analysis workflow.
The API allows for programmatic access to the article extraction functionality, perfect for integrating into your own applications or scripts.
Before you begin, ensure you have:
The API endpoint is:
https://tinq.ai/api/v2/extract-article
You'll need to send a POST request with the following headers:
accept: application/json
content-type: application/json
The request body should be a JSON object with the extract_url key:
{
"extract_url": "https://example.com/your-article-url"
}
Here's an example using curl:
curl --request POST \
--url https://tinq.ai/api/v2/extract-article \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"extract_url": "https://example.com/your-article-url"
}
'
For a more comprehensive documentation with other programming languages and frameworks, please check our documentation.
The API will return a JSON object containing:
Here's a snippet of what the response might look like:
{
"article": {
"title": "Your Article Title",
"top_image": {},
"canonical_link": "https://example.com/your-article-url",
"domain": "example.com",
"article": "The main text content goes here...",
"links": [
{
"url": "https://example.com/related-link",
"text": "Related article"
}
],
// ... more fields ...
},
"usage": {
"requests_left": 9903,
"credits_left": 102000
},
"errors": [],
"success": true,
"status_code": 200
}
For those who prefer a graphical interface or want to quickly extract content without coding, Tinq.ai provides a user-friendly web interface.
#### Step 1: Accessing the Interface
Navigate to the Tinq.ai Article Extractor page (you may need to log in to your account).
Locate the URL input field at the top of the page. It's clearly marked and typically the most prominent feature on the interface.
Enter the URL of the article you wish to extract and click the "EXTRACT" button. This will start the extraction process.
The interface will display the extracted content in several sections:
For a complete view of all extracted data, including metadata, click on the "JSON" tab. This will show you the full API response, which can be useful for more detailed analysis or debugging.
Part 3: Integrating with Other Tinq.ai ToolsThe true power of the Article Extractor comes when combined with other Tinq.ai tools. Here's how you can create a comprehensive content analysis and creation workflow:
1. Extract an article using the API or web interface.
2. Summarize the content to get the key points.
3. Check the summary for plagiarism to ensure originality.
4. Rewrite or paraphrase the summary to create a unique piece of content.
5. Analyze the sentiment of both the original article and your rewritten version.
This workflow allows you to rapidly process, analyze, and create content while keeping originality and understanding the emotional context.
The Tinq.ai Article Extractor, whether used via API or web interface, is a powerful tool for content analysis and creation. By integrating it with other Tinq.ai tools, you can create sophisticated workflows that streamline research, content creation, and data analysis tasks. As you become more familiar with these tools, you'll discover countless ways to leverage them in your specific field or industry.
Remember to always respect copyright laws and terms of service when extracting and using web content. Happy extracting!





