Install
$ agentstack add skill-dembonauta-skill-doc-generator-mobilia-api ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Mobilia Public API
RESTful API for integrating with the Mobilia real estate CRM. Base URL: https://api.mobiliagestion.es/api/v1
Authentication
OAuth 2.0 with Bearer Token. Get token first:
POST /api/v1/token
Content-Type: application/json
{
"client_id": "",
"client_secret": ""
}
Use in all subsequent requests:
Authorization: Bearer
Each endpoint requires specific OAuth scopes (listed below).
Pagination
Paginated endpoints use these query params:
NumeroPagina— page number (min 1)TamanoPagina— page size (max 100)OrdenarPor— sort field (enum per resource)Ordenacion— sort direction (Asc/Desc)
Endpoints by Resource
Inmuebles (Properties)
Rate limit: 10 requests/minute Scope: inmuebles_read (standard), inmueblestodos_read (all)
| Method | Path | Description | |--------|------|-------------| | GET | /inmuebles | Available properties published on web (for sale/rent/transfer) | | GET | /inmuebles/todos | All properties including off-market (requires inmueblestodos_read) | | GET | /inmuebles/desactivados | Properties not available or not published | | GET | /inmuebles/{referencia} | Single property by reference |
Key filters for /inmuebles:
Busqueda— search by reference textTiposOperacion— filter by operation type (Venta/Alquiler/Traspaso)IdGrupos/IdExcluyeGrupos— include/exclude property groupsIdCuentas/IdExcluyeCuentas— filter by accountFechaUltimaModificacion— ISO 8601 date, returns properties modified after this datePrecioVentaDesde— minimum sale priceIdAgente— agent responsible for sale/rent/transfer/captureIdPropietario— filter by owner IDMarcaAguaImagenes— include watermark on images (defaulttrue)DescripcionImagenes— include image descriptions (defaultfalse)
Extra filters for /inmuebles/todos:
Disponible— filter available properties (defaulttrue)PublicarEnWeb— filter web-published (defaulttrue)IdEstadosAdministrativos— filter by administrative state IDs
Clientes (Contacts / Leads)
Scope: clientes_read, clientes_create, clientes_update, clientes_delete
| Method | Path | Description | |--------|------|-------------| | GET | /clientes | List clients with filters | | POST | /clientes | Create a new client | | GET | /clientes/{referencia} | Get client by reference ID | | PUT | /clientes/{referencia} | Update client by reference ID | | DELETE | /clientes/{referencia} | Delete client (409 if conflict) | | GET | /clientes/by-email?email= | Get client by email |
Key filters for /clientes:
TiposCliente— filter by client type enumIdGrupos/IdExcluyeGrupos— include/exclude client groupsIdCampana— filter by campaign IDUltimoContactoDesde/UltimoContactoHasta— last contact date range (YYYY-MM-DD HH:MM:SS)FechaDesde/FechaHasta— registration date rangeIdCuenta— filter by account IDBusqueda— search by name or email
Agentes (Agents)
Scope: agentes_read — returns active agents only
| Method | Path | Description | |--------|------|-------------| | GET | /agentes | List active agents (paginated) | | GET | /agentes/{idAgente} | Get agent by ID | | GET | /agentes/by-email?email= | Get agent by email |
Filters: Busqueda (name, email, or agent ID text search)
Agenda (Visits)
Scope: visitaspendientes_read
| Method | Path | Description | |--------|------|-------------| | GET | /agenda/visitas?idAgente=&fecha= | Pending visits for an agent on a given date |
fecha format: ISO 8601 datetime
Campanas (Campaigns)
Scope: campanas_read
| Method | Path | Description | |--------|------|-------------| | GET | /campanas | List all agency campaigns |
Grupos (Groups)
Scope: grupos_read
| Method | Path | Description | |--------|------|-------------| | GET | /grupos/clientes | Client groups | | GET | /grupos/inmuebles | Property groups |
Use these IDs in IdGrupos / IdExcluyeGrupos filters on clientes and inmuebles.
Cuentas (Accounts)
Scope: cuentas_read
| Method | Path | Description | |--------|------|-------------| | GET | /cuentas | List all agency accounts |
Use these IDs in IdCuenta / IdCuentas filters.
Estados Administrativos
Scope: estadosadministrativos_read
| Method | Path | Description | |--------|------|-------------| | GET | /estadosadministrativos | List all administrative states |
Use these IDs in IdEstadosAdministrativos filter on /inmuebles/todos.
Aplicaciones Clientes
No scope required.
| Method | Path | Description | |--------|------|-------------| | GET | /aplicaciones-cliente/current | Info about the current client application |
Common Patterns
Sync modified properties since a given date
GET /inmuebles?FechaUltimaModificacion=2024-01-01T00:00:00Z&NumeroPagina=1&TamanoPagina=100
Get all properties (including off-market) with specific admin state
GET /inmuebles/todos?Disponible=false&IdEstadosAdministrativos=3&NumeroPagina=1&TamanoPagina=50
Find client by email before creating to avoid duplicates
GET /clientes/by-email?email=user@example.com
If 404/empty, then POST /clientes with ClienteCrearRequest body.
List all active agents, then filter by name
GET /agentes?Busqueda=Juan&NumeroPagina=1&TamanoPagina=20
Check agent's agenda for today
GET /agenda/visitas?idAgente=42&fecha=2024-04-17T00:00:00Z
Error Handling
204 No Content— successful DELETE409 Conflict— DELETE on a client that cannot be removed (response body has details)- Always check OAuth scopes; missing scope returns 401/403
Notes
- All list endpoints return only active records unless using
/todosor/desactivadosvariants - Inmuebles endpoints have a hard rate limit of 10 requests/minute — implement backoff
- Dates in filters use
YYYY-MM-DD HH:MM:SSformat;FechaUltimaModificacionuses ISO 8601
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: DemboNauta
- Source: DemboNauta/skill-doc-generator
- License: MIT
- Homepage: https://www.npmjs.com/package/skill-doc-generator
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.