Resource index
Resource index
Resource index info
Avisos ciudadanos
Avisos ciudadanos recibidos (SIC). 2025 |
|
| Publication date | December 31, 2025 |
|---|---|
| Update date | June 3, 2026 |
| Format | XML |
| MIME Type | application/xml |
| Size | 653.3 MB |
| Downloads | 322 |
| Resource Type | data |
| URL | https://datos.madrid.es/en/en/dataset/212411-0-madrid-avisa/resource/212411-42-madrid-avisa-xml/download/212411-42-madrid-avisa-xml.xml |
| License | Creative Commons Attribution 4.0 International (CC BY 4.0) |
CKAN Data API
Api Info. Api more info
Endpoints »
Data Api Access
| Query |
https://datos.madrid.es/en/api/3/action/datastore_search
|
|---|---|
| Query (via SQL) |
https://datos.madrid.es/en/api/3/action/datastore_search_sql
|
Querying »
Query example (first 5 results)
Query example (results containing 'jones')
Query example (via SQL statement)
Example: Javascript »
Filter by field value
A simple ajax (JSONP)
var data = {
resource_id: '212411-42-madrid-avisa-xml', // the resource id
limit: 5, // get 5 results
q: 'jones' // query for 'jones'
};
$.ajax({
url: 'https://datos.madrid.es/en/api/3/action/datastore_search',
data: data,
dataType: 'jsonp',
success: function(data) {
alert('Total results found: ' + data.result.total)
}
});
Example: Python »
import urllib
url = 'https://datos.madrid.es/en/api/3/action/datastore_search?resource_id=212411-42-madrid-avisa-xml&limit=5&q=title:jones'
fileobj = urllib.urlopen(url)
print fileobj.read()