# Scrape latest Bluesky posts for bluesky keyword

**Use case:** 

Extract recent Bluesky social posts matching bluesky keyword with author handles, text, timestamps, and engagement metrics.

## Input

```json
{
  "queries": [
    "bluesky"
  ],
  "limit": 5,
  "sort": "latest",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "text"
  },
  "authorName": {
    "label": "Author",
    "format": "text"
  },
  "authorUsername": {
    "label": "Username",
    "format": "text"
  },
  "createdAt": {
    "label": "Created At",
    "format": "date"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "repostCount": {
    "label": "Reposts",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Bluesky Posts Scraper](https://apify.com/lexis-solutions/bluesky-posts-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/lexis-solutions/bluesky-posts-scraper) to learn more, explore other use cases, and run it yourself.