Get a list of songs. The fields listed here will be returned when this method is called.
POSThttps://api.elvanto.com/v1/songs/getAll.{json|xml|php}
Name | Type | Description |
---|---|---|
page | integer | The results page to retrieve. Default: 1 |
page_size | integer | The number of records to retrieve per results page. Default: 1000 |
title | string | Search for songs with specific titles. |
artist | string | Search for songs with specific artist. |
lyrics | string | Search for songs with specific lyrics. |
files | boolean | Return attached files. |
{
"page": 1,
"page_size": 100,
"files": true
}
page=1&page_size=100&files=1
{
"generated_in": "0.021",
"status": "ok",
"songs": {
"on_this_page": 100,
"page": 1,
"per_page": 100,
"total": 668,
"song": [
{
"id": "84937df8-e993-11e2-b739-a20c5589acc5",
"status": 1,
"date_added": "2025-02-24 11:56:22",
"date_modified": "2025-08-27 16:17:57",
"title": "Adonai",
"permalink": "adonai",
"number": "12345678",
"item": 1,
"learn": 0,
"allow_downloads": 1,
"artist": "Mia Fieldes, Raymond Badham",
"album": "",
"notes": "",
"categories": {
"category": [
{
"id": "dhe398d8-a251-102c-a245-1559817ce81a",
"name": "Praise"
}
]
},
"locations": {
"location": [
{
"id": "d7r998d8-a251-102c-a245-1559817ce81a",
"name": "South Campus"
}
]
}
}
]
}
}
<?xml version="1.0" encoding="UTF-8"?> <rsp generated_in="0.021" status="ok"> <songs on_this_page="100" page="1" per_page="100" total="668"> <song id="84937df8-e993-11e2-b739-a20c5589acc5" status="1" number="12345678" item="1" learn="0" allow_downloads="1"> <date_added>2025-02-24 11:56:22</date_added> <date_modified>2025-08-27 16:17:57</date_modified> <title>Adonai</title> <permalink>adonai</permalink> <artist>Mia Fieldes, Raymond Badham</artist> <album></album> <notes></notes> <categories> <category id="dhe398d8-a251-102c-a245-1559817ce81a"> <name>Praise</name> </category> </categories> <locations> <location id="d7r998d8-a251-102c-a245-1559817ce81a"> <name>South Campus</name> </location> </locations> </song> </songs> </rsp>
stdClass Object
(
[generated_in] => 0.021
[status] => ok
[songs] => stdClass Object
(
[on_this_page] => 100
[page] => 1
[per_page] => 100
[total] => 668
[song] => stdClass Object
(
[0] => stdClass Object
(
[id] => 84937df8-e993-11e2-b739-a20c5589acc5
[status] => 1
[date_added] => 2025-02-24 11:56:22
[date_modified] => 2025-08-27 16:17:57
[title] => Adonai
[permalink] => adonai
[number] => 12345678
[item] => 1
[learn] => 0
[allow_downloads] => 1
[artist] => Mia Fieldes, Raymond Badham
[album] =>
[notes] =>
[categories] => stdClass Object
(
[category] => stdClass Object
(
[0] => stdClass Object
(
[id] => dhe398d8-a251-102c-a245-1559817ce81a
[name] => Praise
)
)
)
[locations] => stdClass Object
(
[location] => stdClass Object
(
[0] => stdClass Object
(
[id] => d7r998d8-a251-102c-a245-1559817ce81a
[name] => South Campus
)
)
)
)
)
)
)
Please see our response status codes documentation for details of potential error responses for any API request.