Discover/pbinfo API
live

pbinfo APIpbinfo.ro

Access Romanian informatics problems from pbinfo.ro. Search by keyword, browse by category, and retrieve full problem statements, constraints, and metadata.

This API takes change requests — .
Endpoint health
verified 7d ago
search_problems
list_problems
get_problem
3/3 passing latest checkself-healing
Endpoints
3
Updated
14d ago

What is the pbinfo API?

The pbinfo.ro API provides 3 endpoints for accessing programming problems from Romania's primary informatics education platform. Use search_problems to find problems by keyword and get matching IDs and names, list_problems to paginate through category-organized collections, or get_problem to retrieve a full problem record including statement text, time and memory limits, difficulty, tags, categories, and solution count.

This call costs1 credit / call— charged only on success
Try it
Search term to find problems by name (e.g. 'fibonacci', 'matrice', 'sortare').
api.parse.bot/scraper/a67950ed-d14d-40d9-8f6d-e48f9f53aa85/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/a67950ed-d14d-40d9-8f6d-e48f9f53aa85/search_problems?term=fibonacci' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalmissing one? ·

Full-text search over the problem catalog via autocomplete. Returns matching problem names and IDs ranked by relevance. Server returns up to ~30 top matches; no pagination. Each result carries the numeric problem ID usable with get_problem.

Input
ParamTypeDescription
termrequiredstringSearch term to find problems by name (e.g. 'fibonacci', 'matrice', 'sortare').
Response
{
  "type": "object",
  "fields": {
    "total": "integer count of results returned",
    "results": "array of matching problems with id, name, and label"
  },
  "sample": {
    "data": {
      "total": 5,
      "results": [
        {
          "id": 255,
          "name": "Fibonacci",
          "label": "Problema #255: Fibonacci"
        },
        {
          "id": 423,
          "name": "Fibonacci1",
          "label": "Problema #423: Fibonacci1"
        }
      ]
    },
    "status": "success"
  }
}

About the pbinfo API

Endpoints and Data Coverage

The search_problems endpoint accepts a term parameter (e.g. 'fibonacci', 'matrice', 'sortare') and returns up to approximately 30 matching problems, each with an id, name, and label. This is useful for quickly resolving a problem name to its numeric ID before fetching full details.

The list_problems endpoint takes a required category_id (e.g. '7' for Structuri repetitive, '5' for Cifrele unui numar) and an optional start offset for pagination, returning 10 problems per page. Each entry in the problems array includes id, name, url, summary, and difficulty. The response also includes total so you can calculate how many pages exist for a given category.

Problem Detail Fields

get_problem accepts a numeric problem_id and returns a complete record. The metadata object covers posted_by, class, io_type, time_limit, memory_limit, source, author, and difficulty. The response also includes the full statement string, a categories breadcrumb array, a tags array, and num_solutions — the total count of submitted solutions on the platform. Problem IDs can be sourced from either search_problems or list_problems.

Coverage Notes

pbinfo.ro is a Romanian-language platform targeting secondary and high school informatics curricula. Problem statements and category names are in Romanian. The API covers the public problem catalog; user accounts, submission history, and leaderboard data are not part of the current endpoint set.

Reliability & maintenanceVerified

The pbinfo API is a managed, monitored endpoint for pbinfo.ro — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when pbinfo.ro changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official pbinfo.ro API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a study tool that lets students search pbinfo.ro problems by topic keyword and display the full statement and constraints.
  • Aggregate problem difficulty distributions across categories using list_problems pagination and the difficulty field.
  • Populate a problem recommendation engine using tags and categories returned by get_problem.
  • Sync a local database of Romanian informatics problems by iterating categories with list_problems and fetching details via get_problem.
  • Display time and memory limits from metadata alongside problem statements in a custom IDE or contest preparation app.
  • Track problem popularity by comparing num_solutions counts across problems in the same category.
  • Generate curated problem lists for a given school grade using the class field in metadata.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does pbinfo.ro have an official public developer API?+
pbinfo.ro does not publish an official documented API for third-party developers. This Parse API provides structured access to the platform's public problem catalog.
What does `get_problem` return beyond the problem statement?+
In addition to the statement string, the response includes a metadata object with time_limit, memory_limit, difficulty, class, io_type, author, source, and posted_by. It also returns tags, categories as a breadcrumb array, num_solutions, and the canonical url.
How does pagination work in `list_problems`?+
The endpoint returns 10 problems per page. Use the start parameter with zero-based offsets (0, 10, 20, ...) to page through results. The total field in each response tells you the total number of problems in the category, so you can compute how many requests are needed to cover it fully.
Does the API expose user submission history or accepted solution code?+
Not currently. The API covers the public problem catalog — statements, metadata, tags, categories, and aggregate solution counts via num_solutions. Submission history, individual user statistics, and solution source code are not included. You can fork this API on Parse and revise it to add an endpoint targeting that data.
Is there a way to list all available categories and their IDs?+
Not currently. Category IDs must be known in advance (e.g. '7' for Structuri repetitive, '5' for Cifrele unui numar) and passed directly to list_problems. A category discovery endpoint is not part of the current API. You can fork this API on Parse and revise it to add a category listing endpoint.
Page content last updated . Spec covers 3 endpoints from pbinfo.ro.
Related APIs in EducationSee all →
cses.fi API
Explore the CSES Problem Set by browsing problems across different categories, viewing detailed problem information, and discovering available courses and contests. Access comprehensive problem lists organized by topic to find coding challenges tailored to your learning goals.
codechef.com API
Access competitive programming data from CodeChef by retrieving problem lists, contest information with details, user profiles, and recent submission history. Explore coding challenges across multiple contests and browse problems by difficulty rating.
leetcode.com API
Search and filter LeetCode coding problems by difficulty, category, and tags, browse upcoming programming contests, and view public user profiles including their problem statistics and submission history. Perfect for finding practice problems, tracking competition schedules, and researching other coders' progress.
poslovi.infostud.com API
Search and browse job listings from Serbia's top job board, view detailed job information with employer profiles and salary benchmarks. Filter opportunities by job categories and discover insights about employers hiring on Infostud.
poedb.tw API
Search and retrieve comprehensive Path of Exile game data including items, gems, leagues, and game mechanics like bleeding effects across both PoE 1 and PoE 2. Get detailed information about specific items and categories, or browse current league information to stay updated on the latest game content.
booksrun.com API
Search millions of books and get instant buyback quotes on BooksRun. Browse bestsellers and categories, view detailed book information, and check condition guidelines to understand buyback prices and acceptance criteria.
cel.ro API
cel.ro API
quizbowlpackets.com API
Search and browse thousands of quizbowl question sets across all competition levels, then access detailed metadata like difficulty, subjects, and download links for each packet. Find the perfect practice materials for High School, Collegiate, Middle School, or Pop Culture quizbowl competitions.