Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the LottoLens PH Public PCSO Data API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Flottolensph.com%2Flottolensph" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Flottolensph.com%2Flottolensph" | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with LottoLens PH Public PCSO Data API.
Read snapshot and dataset metadata
Retrieve the full set of historical draw-result rows
Retrieve the normal draw schedule for the covered games
Check the snapshot version before reading data
Consume static, cacheable JSON files
GET STARTED
Patterns agents use LottoLens PH Public PCSO Data API for, with concrete tasks.
★ Read historical draw results
Answering questions about past PCSO draws needs the full result history. The API returns the complete set of historical draw-result rows as a single static JSON file, so an application can search or summarize past outcomes. Because the file is a fixed snapshot, results are stable between updates.
Retrieve the historical results snapshot and return the requested draws.
Get the draw schedule
Knowing when draws happen helps plan reminders and displays. The API returns the normal draw days, times, and result formats for the covered games, so an application can show an accurate calendar. The schedule is served as its own static JSON file.
Retrieve the normal draw schedule and return the days and times.
Check the snapshot version
Static data should be read against a known version. The API returns metadata describing the current snapshot, letting an application detect when the dataset has changed before re-reading the larger result file. This keeps a cache accurate without refetching everything.
Read the snapshot metadata and return the current version.
Agent-driven results lookup
An AI agent can answer questions about PCSO draws for a user without a developer wiring each call. Through Jentic the agent matches an intent such as 'what were the recent draw results' to the results operation, runs it, and returns the data. The files are public and read-only, so no credential is involved.
Retrieve the results snapshot and return the draws the user asked about.
3 endpoints — the lottolens ph public pcso data api provides read-only access to a fixed snapshot of philippine pcso draw results.
METHOD
PATH
DESCRIPTION
/api/v1/results.json
Retrieve all historical draw-result rows in the fixed snapshot.
/api/v1/schedule.json
Retrieve the normal draw days, times, and result formats.
/api/v1/metadata.json
Retrieve API and fixed-snapshot metadata.
/api/v1/results.json
Retrieve all historical draw-result rows in the fixed snapshot.
/api/v1/schedule.json
Retrieve the normal draw days, times, and result formats.
/api/v1/metadata.json
Retrieve API and fixed-snapshot metadata.
What agents get from Jentic-routed access to this vendor.
Setup
Reading LottoLens yourself means fetching each static JSON file, caching it, and checking the metadata for changes. With Jentic you install once, import LottoLens from the API Directory, and call the operations by intent.
Permission scoping
Jentic lets you grant your agent only the operations it needs, such as reading results and the schedule, and enforces that on every call.
Credential isolation
LottoLens serves public, read-only JSON and requires no credential, so Jentic One calls the endpoints directly with nothing to store.
Intent-based discovery
Agents find LottoLens through Jentic's intent search, matching a request like 'get the latest PCSO draw results' to the right operation without hardcoded endpoints.
Alternatives and complements available in the Jentic catalogue.
Specific to using LottoLens PH Public PCSO Data API through Jentic.
What can an AI agent do with the LottoLens PCSO Data API through Jentic?
An agent can read historical PCSO draw results, the normal draw schedule, and snapshot metadata. Through Jentic the agent matches an intent to the right operation and runs it against the public JSON files.
Does the LottoLens PCSO Data API require authentication?
No. The JSON files are public and read-only, so no credential is required to read them. Jentic One calls the endpoints directly with nothing to configure for access.
Is the data live or a fixed snapshot?
The data is a fixed, independently compiled snapshot served as immutable JSON files over a CDN. Clients should cache responses and read the metadata file to detect when a new snapshot is published.
Does the LottoLens PCSO Data API document rate limits?
The OpenAPI specification does not state rate limits; the files are static and served through GitHub Pages with CDN caching. Cache responses on your side and re-read only when the snapshot metadata changes.
Can I control which LottoLens operations my agent can call?
Yes. Jentic lets you allow only the operations your agent needs, for example reading results and the schedule. Your Jentic One instance enforces that boundary on every call.
For Agents
Read a fixed snapshot of Philippine PCSO draw results, the draw schedule, and snapshot metadata.
Use for: Look up historical PCSO draw results, Get the normal draw schedule, Check the dataset snapshot version, Read result formats for each game
Not supported: Reads a fixed snapshot of PCSO draw results, schedule, and metadata; it does not provide live draws, place bets, or write any data.
The LottoLens PH Public PCSO Data API provides read-only access to a fixed snapshot of Philippine PCSO draw results. It returns snapshot metadata, the full set of historical draw-result rows, and the normal draw schedule for the covered games. The immutable JSON files are served over a CDN, so an agent can look up past results or the draw calendar without scraping or maintaining its own dataset.