# Tender247 Tenders URL Scraper (`getdataforme/tender247-tenders-urls-ec-scraper`) Actor

Automate the extraction of tender URLs from Tender247 using customizable search queries. This tool offers scalable, high-quality data output in JSON format for seamless integration and analysis, ideal for market research, competitive intelligence, and business automation....

- **URL**: https://apify.com/getdataforme/tender247-tenders-urls-ec-scraper.md
- **Developed by:** [GetDataForMe](https://apify.com/getdataforme) (community)
- **Categories:** Lead generation, Real estate, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $9.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Tender247 Tenders URL Scraper

### Introduction

The **Tender247 Tenders URL Scraper** is an efficient tool designed to automate the extraction of tender URLs from the Tender247 website. By leveraging this actor, users can streamline their search process for tenders based on specific keywords and gather essential data with ease.

### Features

- **Automated Data Extraction**: Seamlessly scrape tender information using customizable search queries.
- **Customizable Search Parameters**: Tailor your searches with adjustable input parameters to meet specific needs.
- **High-Quality Data Output**: Receive structured, reliable data in JSON format for easy integration and analysis.
- **Scalable Performance**: Efficiently handle large volumes of data without compromising speed or accuracy.
- **User-Friendly Interface**: Simple setup and execution process on the Apify platform.

### Input Parameters

| Parameter    | Type   | Required | Description                                                                 | Example          |
|--------------|--------|----------|-----------------------------------------------------------------------------|------------------|
| searchQuery  | string | Yes      | Keyword to search for tenders.                                              | "bidding"        |
| maxItems     | integer| No       | Maximum number of tender items to collect (0 = unlimited).                  | 10               |

### Example Usage

#### Input JSON

```json
{
  "searchQuery": "solar",
  "maxItems": 5
}
```

#### Output JSON

```json
[
  {
    "ID": 102131291,
    "Description": "corrigendum : design, engineering, supply, installation, and commissioning (desit and c) of 1,00,000 nos. of consumers (1.1 kwp per consumer) through net metering and operation & maintenance (o&m) for 5 years with an additional 5 years, via competitive bidding, for grid connected rooftop solar plants through capex mode in jodhpur discom.",
    "Url": "https://www.tender247.com/tender/102131291",
    "Bid Value": 6275000000,
    "Closing Date": "29-07-2026",
    "Location": "Jodhpur, Rajasthan, India",
    "EMD": 125500000,
    "Organization Name": "sss",
    "Doc Uploaded": true,
    "Security Code": "sss",
    "AI Summary": true,
    "Is Favourite": null,
    "Show Tender End Submission": true,
    "Submission End Date": "",
    "scrapedAt": "2026-07-14T07:29:56.939Z",
    "S.N No.": 1,
    "No. of live bidding trenders": 20,
    "No. of bidding results": 20
  }
]
```

### Use Cases

- **Market Research and Analysis**: Gather data to analyze market trends in tendering.
- **Competitive Intelligence**: Monitor competitors' activities by tracking their tenders.
- **Price Monitoring**: Keep track of bid values across different projects for pricing strategies.
- **Content Aggregation**: Compile relevant tender information for reporting or content creation.
- **Academic Research**: Use the data for studies related to economics, business, and public policy.
- **Business Automation**: Integrate with other systems for automated procurement processes.

### Installation and Usage

1. Search for "Tender247 Tenders URL Scraper" in the Apify Store.
2. Click "Try for free" or "Run".
3. Configure input parameters as needed.
4. Click "Start" to begin extraction.
5. Monitor progress in the log.
6. Export results in your preferred format (JSON, CSV, Excel).

### Output Format

The output is a JSON array containing objects with detailed tender information. Key fields include:

- **ID**: Unique identifier for each tender.
- **Description**: Brief overview of the tender.
- **Url**: Direct link to the tender page.
- **Bid Value**: Monetary value of the bid.
- **Closing Date**: Deadline for submission.
- **Location**: Geographic location of the project.
- **EMD**: Earnest Money Deposit required.
- **Organization Name**: Name of the organization involved.

### Support

For custom/simplified outputs or bug reports, please contact:

- Email: support@getdataforme.com
- Subject line: "custom support"
- Contact form: [Get Data For Me](https://getdataforme.com/contact/)

We're here to help you get the most out of this Actor!

# Actor input Schema

## `searchQuery` (type: `string`):

Keyword to search for tenders.

## `maxItems` (type: `integer`):

Maximum number of tender items to collect (0 = unlimited).

## Actor input object example

```json
{
  "searchQuery": "bidding",
  "maxItems": 10
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("getdataforme/tender247-tenders-urls-ec-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("getdataforme/tender247-tenders-urls-ec-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call getdataforme/tender247-tenders-urls-ec-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=getdataforme/tender247-tenders-urls-ec-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/OiDre2ggfd0yXc9b8/builds/Kr4kRs2er4Se6zC5S/openapi.json
