# API Medium annunci per intelligenza artificiale

**Use case:** 

Un esempio pronto all'uso che estrae annunci da Medium per intelligenza artificiale e restituisce campi normalizzati per ogni riga.

## Input

```json
{
  "keyword": "intelligenza artificiale",
  "max_results": 50
}
```

## Output

```json
{
  "cover_image": {
    "label": "Cover Image",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "subtitle": {
    "label": "Subtitle",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "author_name": {
    "label": "Author Name",
    "format": "string"
  },
  "author_username": {
    "label": "Author Username",
    "format": "string"
  },
  "author_url": {
    "label": "Author URL",
    "format": "string"
  },
  "publication_name": {
    "label": "Publication Name",
    "format": "string"
  },
  "publication_url": {
    "label": "Publication URL",
    "format": "string"
  },
  "published_at": {
    "label": "Published At",
    "format": "string"
  },
  "updated_at": {
    "label": "Updated At",
    "format": "string"
  },
  "word_count": {
    "label": "Word Count",
    "format": "integer"
  },
  "reading_time": {
    "label": "Reading Time",
    "format": "number"
  },
  "clap_count": {
    "label": "Clap Count",
    "format": "integer"
  },
  "response_count": {
    "label": "Response Count",
    "format": "integer"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "topics": {
    "label": "Topics",
    "format": "array"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "license": {
    "label": "License",
    "format": "string"
  },
  "content": {
    "label": "Content",
    "format": "string"
  },
  "images": {
    "label": "Images",
    "format": "array"
  },
  "id": {
    "label": "Article ID",
    "format": "string"
  },
  "author_id": {
    "label": "Author ID",
    "format": "string"
  },
  "publication_id": {
    "label": "Publication ID",
    "format": "string"
  },
  "platform": {
    "label": "Platform",
    "format": "string"
  },
  "processor": {
    "label": "Processor",
    "format": "string"
  },
  "processed_at": {
    "label": "Processed At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Medium API](https://apify.com/truefetch/medium-api.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/truefetch/medium-api.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/truefetch/medium-api.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`).
