# Send Polymarket Latest Events to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "polymarket-latest-events",
    "name": "Polymarket Latest Events",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/yaplora/polymarket-latest-events",
    "canonicalUrl": "https://clawhub.ai/yaplora/polymarket-latest-events",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/polymarket-latest-events",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=polymarket-latest-events",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/polymarket-latest-events"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/polymarket-latest-events",
    "downloadUrl": "https://openagent3.xyz/downloads/polymarket-latest-events",
    "agentUrl": "https://openagent3.xyz/skills/polymarket-latest-events/agent",
    "manifestUrl": "https://openagent3.xyz/skills/polymarket-latest-events/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/polymarket-latest-events/agent.md"
  }
}
```
## Documentation

### Polymarket Latest Events

Fetch the latest events from the Polymarket prediction market platform.

### When to Use

Use this skill when the user:

Asks about the latest events or markets on Polymarket
Wants to see trending prediction markets
Mentions Polymarket, prediction market, or betting odds
Asks "what's new on Polymarket" or similar queries

### How to Fetch

Use web_fetch (or curl via Bash) to call the Polymarket Gamma API. No API key or authentication is required.

### Get the 10 latest events

curl -s "https://gamma-api.polymarket.com/events?active=true&closed=false&limit=10&order=createdAt&ascending=false"

Or with web_fetch:

web_fetch url="https://gamma-api.polymarket.com/events?active=true&closed=false&limit=10&order=createdAt&ascending=false"

### Response format

The API returns a JSON array. Each event object contains:

FieldDescriptiontitleEvent title / questionslugURL slug for the eventdescriptionDetailed descriptionstartDateEvent start datecreatedAtWhen the event was createdvolumeTotal trading volumeliquidityAvailable liquiditymarketsArray of sub-markets with outcomes and pricestagsCategory tags

### Build event links

The Polymarket URL for each event is:

https://polymarket.com/event/{slug}

### Read market prices

Each event has a markets array. Each market contains:

question: The specific question
outcomes: JSON string like ["Yes", "No"]
outcomePrices: JSON string like ["0.65", "0.35"] (probabilities)

### Output Format

Present the results as a clean list:

{title} — {short description or first tag}

Odds: Yes {price}% / No {price}%
Link: https://polymarket.com/event/{slug}

### Filtering Options

You can customize the API query:

By category: add &tag_id={id} (get tag IDs from https://gamma-api.polymarket.com/tags?limit=100)
By volume: &order=volume&ascending=false for most-traded events
By sport: use https://gamma-api.polymarket.com/sports to discover leagues, then filter by &series_id={id}
More results: change &limit=10 to any number
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: yaplora
- Version: 0.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/polymarket-latest-events)
- [Send to Agent page](https://openagent3.xyz/skills/polymarket-latest-events/agent)
- [JSON manifest](https://openagent3.xyz/skills/polymarket-latest-events/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/polymarket-latest-events/agent.md)
- [Download page](https://openagent3.xyz/downloads/polymarket-latest-events)