AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Mobilia Api

skill-dembonauta-skill-doc-generator-mobilia-api · by DemboNauta

Integration with Mobilia Public API — a RESTful CRM for real estate agencies. Use when working with Mobilia's inmuebles (properties), clientes (contacts/leads), agentes (agents), agenda (visits), campanas (campaigns), grupos, cuentas, or estados administrativos.

No reviews yet
0 installs
13 views
0.0% view→install

Install

$ agentstack add skill-dembonauta-skill-doc-generator-mobilia-api

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

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

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-dembonauta-skill-doc-generator-mobilia-api)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Mobilia Api? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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 text
  • TiposOperacion — filter by operation type (Venta/Alquiler/Traspaso)
  • IdGrupos / IdExcluyeGrupos — include/exclude property groups
  • IdCuentas / IdExcluyeCuentas — filter by account
  • FechaUltimaModificacion — ISO 8601 date, returns properties modified after this date
  • PrecioVentaDesde — minimum sale price
  • IdAgente — agent responsible for sale/rent/transfer/capture
  • IdPropietario — filter by owner ID
  • MarcaAguaImagenes — include watermark on images (default true)
  • DescripcionImagenes — include image descriptions (default false)

Extra filters for /inmuebles/todos:

  • Disponible — filter available properties (default true)
  • PublicarEnWeb — filter web-published (default true)
  • 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 enum
  • IdGrupos / IdExcluyeGrupos — include/exclude client groups
  • IdCampana — filter by campaign ID
  • UltimoContactoDesde / UltimoContactoHasta — last contact date range (YYYY-MM-DD HH:MM:SS)
  • FechaDesde / FechaHasta — registration date range
  • IdCuenta — filter by account ID
  • Busqueda — 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 DELETE
  • 409 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 /todos or /desactivados variants
  • Inmuebles endpoints have a hard rate limit of 10 requests/minute — implement backoff
  • Dates in filters use YYYY-MM-DD HH:MM:SS format; FechaUltimaModificacion uses ISO 8601

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.