Quickstart

The Pulserie API lets you create sites, trigger crawls, and read changes from your own code or an agent. You will be talking to your first endpoint in about a minute.

  1. 1

    Create an API key

    API keys are available on the Pro and Business plans. Open Settings, API keys and create one. Copy it right away; the full key is shown only once and starts with plsr_.

  2. 2

    Make your first request

    Send the key as a bearer token against the base URL https://api.pulserie.com/api/v1. This lists every site in your organization.

    bash
    curl https://api.pulserie.com/api/v1/sites \
      -H "Authorization: Bearer plsr_your_api_key"
  3. 3

    Read what you get back

    Responses are JSON. A successful GET /sites returns an array of your sites, each with its crawl settings and the last time it ran.

    json
    [
      {
        "id": "site_8fk2p",
        "name": "Acme pricing",
        "seedUrl": "https://acme.com/pricing",
        "mode": "list",
        "maxPages": 25,
        "intervalMinutes": 1440,
        "lastCrawledAt": "2026-07-01T06:00:00.000Z",
        "createdAt": "2026-06-14T09:12:00.000Z"
      }
    ]

That is the whole loop: authenticate, call an endpoint, read JSON. From here, browse the full API reference, or drive Pulserie from your terminal with the CLI or an agent with the MCP server.