# EU Tender Bid/No-Bid Analysis

**Use case:** 

Analyze a public EU tender PDF against an example company profile and receive an evidence-backed BID, REVIEW, or NO_BID recommendation.

## Input

```json
{
  "mode": "analyze",
  "documentUrl": "https://ec.europa.eu/info/funding-tenders/opportunities/portal/screen/opportunities/tender-details/docs/ca87a649-7bad-47fb-a733-e5073ca5994e-CN/Invitation%20to%20tender_V1.pdf",
  "fileName": "EMSA-2026-OP-0002-invitation-to-tender.pdf",
  "companyProfile": {
    "name": "Example Maritime Earth Observation GmbH",
    "countries": [
      "Germany",
      "Portugal",
      "France"
    ],
    "legalEstablishmentCountry": "Germany",
    "executiveManagementCountry": "Germany",
    "capabilities": [
      "SAR satellite imagery acquisition",
      "Very high resolution optical satellite imagery",
      "Earth observation data processing",
      "Maritime surveillance analytics",
      "Near-real-time image delivery",
      "Geospatial data processing",
      "Secure cloud delivery",
      "Service-level monitoring"
    ],
    "industries": [
      "Earth observation",
      "Maritime surveillance",
      "Geospatial intelligence"
    ],
    "certifications": [
      "ISO 9001",
      "ISO 27001"
    ],
    "languages": [
      "English",
      "German",
      "Portuguese"
    ],
    "yearsInBusiness": 12,
    "relevantExperienceYears": 9,
    "employeeCount": 80,
    "availableProjectTeamSize": 14,
    "referenceProjects": [
      {
        "title": "Satellite-based maritime monitoring service",
        "description": "Delivered SAR and optical satellite imagery processing for vessel detection and maritime situational awareness.",
        "technologies": [
          "SAR",
          "Optical imagery",
          "GIS",
          "Cloud processing"
        ],
        "outcome": "Operational service delivered with monitored response times and secure data distribution."
      }
    ]
  },
  "outputLanguage": "en",
  "includeComplianceMatrix": true,
  "authorizedToProcess": true
}
```

## Output

```json
{
  "decision": {
    "label": "Decision",
    "format": "string"
  },
  "fitScore": {
    "label": "Fit score",
    "format": "number"
  },
  "confidence": {
    "label": "Confidence",
    "format": "number"
  },
  "summary": {
    "label": "Summary",
    "format": "string"
  },
  "document": {
    "label": "Document",
    "format": "object"
  },
  "opportunity": {
    "label": "Opportunity",
    "format": "object"
  },
  "risks": {
    "label": "Risks",
    "format": "array"
  },
  "clarificationQuestions": {
    "label": "Clarification questions",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [EU Tender Bid/No-Bid Analyzer](https://apify.com/highbrow_qualification_z7w/eu-tender-bid-analyzer.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/highbrow_qualification_z7w/eu-tender-bid-analyzer.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/highbrow_qualification_z7w/eu-tender-bid-analyzer.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
