Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHubOpen Standards
Resources
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Developer Tools / Para API
Para API logo

Paraio Para API

★ Only Publicly Available OpenAPI DocumentDeveloper ToolsPackage Registryhttp8 EndpointsREST

For Agents

Manage backend objects, authentication, and search across 8 endpoints with flexible object types.

Use for: I need to authenticate and get a JWT token, Create a new object in the backend, List all objects of a specific type, Search for objects matching criteria

Not supported: Does not handle file storage, real-time synchronization, or cloud functions - use for RESTful object CRUD, search, and JWT authentication only.

Jentic publishes the only available OpenAPI specification for Para API, keeping it validated and agent-ready. Para is an open-source backend framework providing RESTful API endpoints for CRUD operations, full-text search, user management, and social sign-in. It powers backend infrastructure for web and mobile applications with flexible object storage, authentication, and search capabilities.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Para API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Para 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.

1

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%2Fparaio.com%2Fmain" | sh
2

Step 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%2Fparaio.com%2Fmain" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic 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.

Capabilities

What an agent can do with Para API.

Sign in and obtain JWT authentication tokens

Create objects of any custom type

List objects by type with sorting and pagination

Read, update, and delete objects by ID

Search objects with query parameters

Manage user authentication and sessions

Use Cases

Patterns agents use Para API for, with concrete tasks.

★ JWT Authentication

Authenticate with the Para API and obtain JWT access tokens. POST /jwt_auth accepts appid, provider, and token parameters, returning a JWT object with access_token, expires, and refresh timestamps. Essential for securing API access and managing user sessions.

POST /jwt_auth with appid, provider, and token to obtain JWT access_token

Flexible Object CRUD

Create, read, update, and delete objects of any custom type. POST /{type} creates objects, GET /{type}/{id} reads them, PATCH /{type}/{id} updates, and DELETE /{type}/{id} removes. The type parameter supports any custom object schema (users, posts, comments, etc).

POST /{type} to create, GET /{type}/{id} to read, PATCH to update, DELETE to remove objects

Object Listing with Pagination

List objects by type with sorting, pagination, and descending order. GET /{type} accepts sort, desc, limit, and page query parameters, returning ObjectListResponse with items array and totalHits. Essential for browsing and displaying object collections.

GET /{type}?sort=timestamp&desc=true&limit=50&page=1 for sorted, paginated results

Object Search

Search objects across types with query parameters. GET /search accepts q (query string) and type parameters for targeted searches, returning matched objects with relevance scoring. Enables full-text search across the backend object store.

GET /search?q=keyword&type=posts to search posts matching keyword

Agent-Driven Backend Operations via Jentic

An AI agent managing backend infrastructure can create objects, search data, and handle authentication through Jentic without exposing JWT tokens or credentials in agent context. Jentic resolves intents like 'create a user object' to the right Para endpoint.

Search Jentic for 'create backend object', load the POST /{type} schema, and execute

Key Endpoints

8 endpoints — jentic publishes the only available openapi specification for para api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

POST

/jwt_auth

Sign in and obtain JWT token

GET

/{type}

List objects by type

POST

/{type}

Create a new object

GET

/{type}/{id}

Read an object by ID

PATCH

/{type}/{id}

Update an object

DELETE

/{type}/{id}

Delete an object

GET

/search

Search objects

GET

/_me

Get current user profile

POST

/jwt_auth

Sign in and obtain JWT token

GET

/{type}

List objects by type

POST

/{type}

Create a new object

GET

/{type}/{id}

Read an object by ID

PATCH

/{type}/{id}

Update an object

DELETE

/{type}/{id}

Delete an object

GET

/search

Search objects

GET

/_me

Get current user profile

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the Para API by hand means obtaining a JWT through /jwt_auth, carrying it as a bearer token, and shaping the generic /{type} object routes yourself. Through Jentic you install once, import Para from the API Directory, store the token once, and your agent calls it.

Permission scoping

Permission scoping

Para puts the object type and id in the URL path (/{type}/{id}), so a rule can pin your agent to one object type: it can create, read, and search those objects. You choose the operations it may call, so destructive ones like object deletion are not included unless you add them.

Credential management

Credential isolation

Your Para JWT is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'create a backend object' or 'search objects by type', and Jentic returns the matching Para operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Firebase API

→

Google's backend-as-a-service with real-time database, authentication, and cloud functions

Choose Firebase API when the workflow requires real-time data synchronization and deep Google Cloud integration

Alternative

Supabase API

→

Open-source Firebase alternative with PostgreSQL, authentication, and real-time subscriptions

Choose Supabase API when the workflow requires PostgreSQL with strong typing and real-time capabilities

FAQs

Specific to using Para API through Jentic.

Why is there no official OpenAPI spec for Para API?

Para is open-source but does not publish a complete OpenAPI specification for their REST API. Jentic generates and maintains this spec so that AI agents and developers can call Para API via structured tooling. Get started with Jentic One, the self-hosted execution layer.

What authentication does the Para API use?

Para API uses JWT bearer token authentication. POST /jwt_auth returns an access_token that must be included in the Authorization header for subsequent requests. Through Jentic, tokens are stored in the encrypted vault and injected at execution time.

Can I use custom object types?

Yes. The {type} path parameter accepts any custom object type (users, posts, comments, products, etc). Para stores and indexes objects flexibly, allowing you to define your own schemas and relationships.

How does pagination work?

GET /{type} accepts limit (number of results) and page (page number) query parameters. The response includes totalHits for calculating total pages. Use sort and desc parameters to control ordering.

Does Para support full-text search?

Yes. GET /search accepts a q (query string) parameter for full-text search across object fields. Optionally specify type to limit search to specific object types. Results include relevance scoring.

Is Para open-source?

Yes. Para is an open-source backend framework that can be self-hosted or used as a hosted service. The API works identically regardless of deployment model, making it suitable for both development and production.

Can I limit what my agent is allowed to do with the Para API?

Yes. Because you run Jentic One yourself, your own rules decide which Para operations and credentials the agent may use. Since Para puts the object type and id in the URL path (/{type}/{id}), a rule can pin the agent to a single object type and to specific operations, so it can create, read, list, and search those objects without touching others. Destructive calls like DELETE /{type}/{id} stay out of reach unless you explicitly grant them.

GET STARTED

Start building with Para API

Explore with Jentic One
View OpenAPI Document