curl --request GET \
--url https://api.vaquill.ai/api/v1/in/acts/{act_id}/amendments \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.vaquill.ai/api/v1/in/acts/{act_id}/amendments"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.vaquill.ai/api/v1/in/acts/{act_id}/amendments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.vaquill.ai/api/v1/in/acts/{act_id}/amendments"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"actId": "IND_state_20326",
"title": "The Maharashtra Value Added Tax Act, 2002.",
"totalFootnotes": 3,
"footnotes": [
{
"sectionNumber": "1",
"sectionTitle": "Short title, extent and commencement",
"footnoteId": 1,
"footnoteText": "This sub-section was substituted by Mah. 14 of 2005, s. 2.",
"footnoteType": "substitution",
"byAct": "Mah. 14 of 2005"
},
{
"sectionNumber": "10",
"sectionTitle": "Sales Tax Authorities",
"footnoteId": 1,
"footnoteText": "These words were substituted for the words \"State Government may appoint\" by Mah. 8 of 2021, s. 22(1).",
"footnoteType": "substitution",
"byAct": "Mah. 8 of 2021",
"originalText": "State Government may appoint"
}
],
"typeCounts": {
"substitution": 3
},
"page": 1,
"pageSize": 3,
"hasMore": true,
"meta": {
"processingTimeMs": 532.1,
"creditsConsumed": 5
}
}{
"detail": "Insufficient API credits."
}{
"detail": "Insufficient API credits."
}{
"detail": "Insufficient API credits."
}{
"detail": "Insufficient API credits."
}{
"detail": "Insufficient API credits."
}{
"detail": "Insufficient API credits."
}Get amendment history
Get the amendment history (footnotes) for an act.
Authentication: API key via Authorization: Bearer vq_key_...
Cost: 5 credits
Returns footnotes including substitutions, insertions, omissions, and notes. Paginated — max 200 per request.
curl --request GET \
--url https://api.vaquill.ai/api/v1/in/acts/{act_id}/amendments \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.vaquill.ai/api/v1/in/acts/{act_id}/amendments"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.vaquill.ai/api/v1/in/acts/{act_id}/amendments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.vaquill.ai/api/v1/in/acts/{act_id}/amendments"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"actId": "IND_state_20326",
"title": "The Maharashtra Value Added Tax Act, 2002.",
"totalFootnotes": 3,
"footnotes": [
{
"sectionNumber": "1",
"sectionTitle": "Short title, extent and commencement",
"footnoteId": 1,
"footnoteText": "This sub-section was substituted by Mah. 14 of 2005, s. 2.",
"footnoteType": "substitution",
"byAct": "Mah. 14 of 2005"
},
{
"sectionNumber": "10",
"sectionTitle": "Sales Tax Authorities",
"footnoteId": 1,
"footnoteText": "These words were substituted for the words \"State Government may appoint\" by Mah. 8 of 2021, s. 22(1).",
"footnoteType": "substitution",
"byAct": "Mah. 8 of 2021",
"originalText": "State Government may appoint"
}
],
"typeCounts": {
"substitution": 3
},
"page": 1,
"pageSize": 3,
"hasMore": true,
"meta": {
"processingTimeMs": 532.1,
"creditsConsumed": 5
}
}{
"detail": "Insufficient API credits."
}{
"detail": "Insufficient API credits."
}{
"detail": "Insufficient API credits."
}{
"detail": "Insufficient API credits."
}{
"detail": "Insufficient API credits."
}{
"detail": "Insufficient API credits."
}Authorizations
API key issued from the developer dashboard. Pass as Authorization: Bearer vq_key_...
Path Parameters
1 - 200^[a-zA-Z0-9_-]+$Query Parameters
Filter by section number
Amendment action class. Served in the NOMINAL spelling; the corpus stores the verbal form (substituted) and either is accepted.
substitution, insertion, omission, renumbering, addition, repeal, deletion, adaptation, amendment, note "substitution"
Page number
x >= 1Results per page
1 <= x <= 200Response
Successful Response
Footnotes on THIS page, not in the act. Paging is by page/pageSize, so this equals pageSize on a full page.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
True when a further page of footnotes exists.
What this call cost and how long it took.
🔴 Added 2026-09-06. Five of the six original routes returned NO statement
of what they billed: /text (3 credits), /amendments (5), /list (1),
/filters (0) and /corresponding-provisions (1). The house rule on the
US surface is that creditsConsumed is the CONTRACT and the list price is
not, and it matters most exactly where refunds happen -- /text refunds on
a missing act, /corresponding-provisions refunds when a mapping does not
exist yet. Without this field a caller cannot tell a refunded call from a
charged one, and has to reconcile against the ledger to find out.
Show child attributes
Show child attributes
Was this page helpful?

