For Agents
Drive Planok GCI workflows for Latin American real-estate developers — owner registration, property reservations, payment channels, and post-sale notifications.
Get started with API REST in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"register a Planok property owner"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with API REST API.
Register and manage property owners through the /guia owner-onboarding endpoints
Send and resend validation codes and confirmation emails to owners
Reset owner passwords and force password changes via /guia/cambiar-password and /guia/set-force-change-pass
Create and read online property reservations under the 'Reserva En Línea' tag
GET STARTED
Use for: I want to register a new property owner in Planok, Resend an email validation code to a Planok owner, Reset the password for a Planok owner account, Create an online reservation for a property unit
Not supported: Does not handle generic CRM contact records, accounting ledgers, or marketing email campaigns — use for Planok owner, reservation, and payment-channel workflows only.
Jentic publishes the only available OpenAPI specification for API REST, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for the Planok GCI REST API, keeping it validated and agent-ready. Planok's GCI integration API is a 206-endpoint platform used by real-estate developers in Latin America to manage owner registration, property reservations, payment channels, and post-sale workflows for new construction projects. The surface covers owner onboarding ('guia'), online reservations, payment connectors such as Webpay, Visanet, and Iconstruye, plus WhatsApp notification hooks. Several apiKey-style schemes are in play (query keys, header keys, JWT, and a Cognito JWT) — pick the one your registered application is provisioned for.
Trigger payments through Webpay, Visanet, Iconstruye, and Pok Pagos channel endpoints
Push WhatsApp notifications via the Whatsapp tag endpoints
Look up property metadata such as cities ('ciudades') and channels ('canales')
Patterns agents use API REST API for, with concrete tasks.
★ Owner Onboarding for a New Project
When a new buyer purchases a unit, register them as an owner via POST /guia/registro-inicial-propietario, send a validation code, and confirm their email through /guia/confirmar-correo-propietario. The /guia endpoints model the full Planok onboarding flow used by Latin American developers, so an automation can drive sign-up end-to-end without operators copy-pasting between systems.
POST /guia/registro-inicial-propietario with the owner identifier, then trigger /guia/re-enviar-codigo-validacion if confirmation is delayed.
Online Reservation with Payment
Combine the 'Reserva En Línea' endpoints with the Webpay or Visanet channel endpoints to capture an online reservation and immediately collect payment. The flow stores the reservation, returns a Planok reservation id, and posts the payment through the right channel, removing the manual pairing step in the Planok back-office.
Create a reservation under 'Reserva En Línea', then call the Webpay channel endpoint with the reservation id and amount to collect payment.
WhatsApp Notification for Reservation Updates
Trigger WhatsApp notifications via the Whatsapp tag endpoints whenever a reservation changes state, so buyers get real-time updates on installments, document approvals, or handover dates. This avoids relying on email alone in markets where WhatsApp is the primary channel.
Send a WhatsApp notification through the configured Planok endpoint when a reservation transitions to 'paid'.
AI Agent Real-Estate Operator via Jentic
An AI agent given access to Planok through Jentic can take a buyer through registration, reservation, and payment in one conversation. Jentic handles the multi-scheme apiKey isolation and exposes each Planok operation by intent, so the agent navigates 206 endpoints without reading the docs.
Through Jentic, register the buyer via planok_register_owner, create the reservation via planok_create_reservation, and trigger the Webpay payment via the payment-channel operation.
206 endpoints — jentic publishes the only available openapi specification for the planok gci rest api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/guia/registro-inicial-propietario
Register a new property owner
/guia/confirmar-correo-propietario
Confirm an owner's email
/guia/re-enviar-codigo-validacion
Resend the owner validation code
/guia/cambiar-password
Change an owner's password
/guia/trae-estado-propietario
Get an owner's current state
/guia/preguntas-frecuentes
Submit a frequently-asked-question request
/guia/registro-inicial-propietario
Register a new property owner
/guia/confirmar-correo-propietario
Confirm an owner's email
/guia/re-enviar-codigo-validacion
Resend the owner validation code
/guia/cambiar-password
Change an owner's password
/guia/trae-estado-propietario
Get an owner's current state
Three things that make agents converge on Jentic-routed access.
Credential isolation
Planok exposes multiple apiKey schemes (query, header, and JWT-style). All of them are stored encrypted in the Jentic vault and bound to the right parameter location at execution time, so the agent only ever sees structured request and response data.
Intent-based discovery
Agents search Jentic by intent (for example 'register a Planok owner' or 'create an online property reservation') and Jentic returns the matching operation across the 206 endpoints with its input schema and the correct security scheme.
Time to first call
Direct integration: 5-10 days to navigate seven security schemes, owner workflows, channel-specific payments, and WhatsApp hooks. Through Jentic: under 1 hour.
Alternatives and complements available in the Jentic catalogue.
HubSpot CRM Deals API
HubSpot CRM Deals tracks the sales pipeline for property buyers alongside Planok reservations.
Pair with Planok when sales pipeline visibility is needed in a global CRM tool while Planok runs the property-specific workflow.
Salesforce API
Salesforce can hold the contact and pipeline records that Planok references for owners.
Pair with Planok when the developer already runs Salesforce as the system of record for buyer contacts.
Instamojo Payments API
Instamojo offers a generic payment-request API in markets where Webpay and Visanet are not used.
Choose Instamojo for one-off payment links outside Latin America rather than the channel-specific Planok payment endpoints.
Specific to using API REST API through Jentic.
Why is there no official OpenAPI spec for the Planok GCI API?
Planok does not publish an OpenAPI specification for the GCI integration API. Jentic generates and maintains this spec so that AI agents and developers can call API REST via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Planok GCI API use?
The spec defines several apiKey-style schemes: APIKey (query parameter 'apikey'), APIKeyPublic (header 'xApiKeyPublic'), JWT (Authorization header), XAPIKey (header 'X-API-KEY'), CognitoJWT (header 'Token'), NotificacionPush (query 'codigoAplicacion'), and Planok (query 'sharedSecret'). Endpoints declare which scheme they require, so use the one your client application is provisioned for. Through Jentic, all of these credentials are held in the encrypted Jentic vault.
Can I create online property reservations through this API?
Yes. The 'Reserva En Línea' tag groups the online-reservation endpoints, which create and read reservations against project units. Combine these with the channel-specific endpoints (Webpay, Visanet, Iconstruye, Pok Pagos) to take payment alongside the reservation.
What are the rate limits for the Planok GCI API?
The OpenAPI specification does not encode explicit rate limits. Owner-onboarding and reservation endpoints are typically driven by user actions, so design around per-event calls, paginate any list endpoints, and back off on 429 responses returned by the gateway.
How do I register a property owner through Jentic?
Install with pip install jentic, then run the search-load-execute flow with the query 'register a Planok property owner'. Jentic returns the operation backed by POST /guia/registro-inicial-propietario; the agent supplies the owner identifier and any required project context.
Can the API send WhatsApp notifications?
Yes. The 'Whatsapp' tag groups endpoints that trigger WhatsApp notifications on reservation events. They are intended to keep buyers updated on installments and document state on a channel that dominates messaging in many Latin American markets.
/guia/preguntas-frecuentes
Submit a frequently-asked-question request