Bill details
Returns the totals and items (transactions) of a specific bill, identified by its due date (YYYY-MM-DD).
Notes:
itemsmay be empty.- Amounts are in BRL;
amountUsdis 0 for domestic transactions.
curl -X GET "https://api-sandbox.contasimples.com/credit-cards/v1/bills/2024-10-22" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN"
import requests
import json
url = "https://api-sandbox.contasimples.com/credit-cards/v1/bills/2024-10-22"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN"
}
response = requests.get(url, headers=headers)
print(response.json())
const response = await fetch("https://api-sandbox.contasimples.com/credit-cards/v1/bills/2024-10-22", {
method: "GET",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN"
}
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
)
func main() {
req, err := http.NewRequest("GET", "https://api-sandbox.contasimples.com/credit-cards/v1/bills/2024-10-22", nil)
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer YOUR_API_TOKEN")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://api-sandbox.contasimples.com/credit-cards/v1/bills/2024-10-22')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['Content-Type'] = 'application/json'
request['Authorization'] = 'Bearer YOUR_API_TOKEN'
response = http.request(request)
puts response.body
{
"nationalAmount": 839.39,
"internationalAmount": 150,
"iofAmount": 1.36,
"creditsAmount": 3411.55,
"chargesAmount": 5.74,
"items": [
{
"id": 123456,
"amount": 536.67,
"amountUsd": 0,
"exchangeRate": 5.12,
"purchasedAt": "2024-09-15T14:30:00.000Z",
"title": "Compra nacional",
"description": "FATURA PAGA",
"operationType": "CASH_OUT",
"maskedCardNumber": "4729********1834",
"merchant": "Conta Simples"
}
]
}
{
"error": "Bad Request",
"message": "The request contains invalid parameters or malformed data",
"code": 400,
"details": [
{
"field": "email",
"message": "Invalid email format"
}
]
}
{
"error": "Unauthorized",
"message": "Authentication required. Please provide a valid API token",
"code": 401
}
{
"error": "Internal Server Error",
"message": "An unexpected error occurred on the server",
"code": 500,
"requestId": "req_1234567890"
}
GET
/credit-cards/v1/bills/{dueDate}GET
Base URLstring
Target server for requests. Edit to use your own host.
Bearer Token
Bearer Tokenstring
RequiredBearer token from OAuth 2.0 client credentials. Format: Bearer TOKEN
Bearer token from OAuth 2.0 client credentials. Format:
Bearer TOKENpath
dueDatestring
RequiredBill due date in YYYY-MM-DD format. Identifies the bill.
Format: date
Request Preview
Response
Response will appear here after sending the request
Authentication
header
Authorizationstring
RequiredBearer token. Bearer token from OAuth 2.0 client credentials. Format: Bearer TOKEN
Path Parameters
Responses
nationalAmountnumber
RequiredTotal domestic purchases (BRL).
internationalAmountnumber
RequiredTotal international purchases, converted (BRL).
iofAmountnumber
RequiredTotal IOF (BRL).
creditsAmountnumber
RequiredTotal credits/refunds (BRL).
chargesAmountnumber
RequiredTotal charges (BRL).
itemsarray
RequiredBill items (transactions). May be empty.
Was this page helpful?