# Note Magazine posts: URLs Scraper

**Use case:** 

Note: Extract available original public record URLs from supplied records, retaining original public source context.

## Input

```json
{
  "inputList": [
    "https://note.com/info/m/m4bd0825e8f53"
  ],
  "pagesPerMagazine": 1
}
```

## Output

```json
{
  "input": {
    "label": "Input",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "type": {
    "label": "Type",
    "format": "string"
  },
  "id": {
    "label": "ID",
    "format": "string"
  },
  "key": {
    "label": "Key",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "post_type": {
    "label": "Post type",
    "format": "string"
  },
  "published_at": {
    "label": "Published at",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "preview_text": {
    "label": "Preview text",
    "format": "string"
  },
  "price_jpy": {
    "label": "Price jpy",
    "format": "integer"
  },
  "is_paid": {
    "label": "Is paid",
    "format": "boolean"
  },
  "can_read": {
    "label": "Can read",
    "format": "boolean"
  },
  "likes_count": {
    "label": "Likes count",
    "format": "integer"
  },
  "anonymous_likes_count": {
    "label": "Anonymous likes count",
    "format": "integer"
  },
  "comments_count": {
    "label": "Comments count",
    "format": "integer"
  },
  "image_count": {
    "label": "Image count",
    "format": "integer"
  },
  "thumbnail_url": {
    "label": "Thumbnail URL",
    "format": "string"
  },
  "is_pinned": {
    "label": "Is pinned",
    "format": "boolean"
  },
  "hashtags": {
    "label": "Hashtags",
    "format": "array"
  },
  "author.id": {
    "label": "Author ID",
    "format": "string"
  },
  "author.key": {
    "label": "Author key",
    "format": "string"
  },
  "author.username": {
    "label": "Author username",
    "format": "string"
  },
  "author.name": {
    "label": "Author name",
    "format": "string"
  },
  "author.url": {
    "label": "Author URL",
    "format": "string"
  },
  "author.description": {
    "label": "Author description",
    "format": "string"
  },
  "author.profile_image_url": {
    "label": "Author profile image URL",
    "format": "string"
  },
  "author.header_image_url": {
    "label": "Author header image URL",
    "format": "string"
  },
  "author.followers_count": {
    "label": "Author followers count",
    "format": "integer"
  },
  "author.following_count": {
    "label": "Author following count",
    "format": "integer"
  },
  "author.follow_counts_visible": {
    "label": "Author follow counts visible",
    "format": "boolean"
  },
  "author.is_official": {
    "label": "Author is official",
    "format": "boolean"
  },
  "is_pinned_in_magazine": {
    "label": "Is pinned in magazine",
    "format": "boolean"
  },
  "magazine.key": {
    "label": "Magazine key",
    "format": "string"
  },
  "magazine.name": {
    "label": "Magazine name",
    "format": "string"
  },
  "magazine.url": {
    "label": "Magazine URL",
    "format": "string"
  },
  "magazine.description": {
    "label": "Magazine description",
    "format": "string"
  },
  "magazine.posts_count": {
    "label": "Magazine posts count",
    "format": "integer"
  },
  "magazine.price_jpy": {
    "label": "Magazine price jpy",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [Note Magazine Posts Scraper](https://apify.com/scrapingmonkey/note-magazine-posts-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapingmonkey/note-magazine-posts-scraper.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/scrapingmonkey/note-magazine-posts-scraper.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`).
