Skip to content

Commit 43df978

Browse files
authored
Update README.md
1 parent 5a8221a commit 43df978

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

README.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ An **unofficial** Python SDK for Santander's API that simplifies integration wit
99
-**Authentication**: Automatic token management
1010
- 💰 **Account Information**: Retrieve account and workspace details
1111
- 💸 **PIX Transfers**: Easy PIX payment processing
12-
- 📑 **Receipts**: Query and retrive receipts of any transaction
12+
- 📑 **Receipts**: Query and retrieve receipts of any transaction
1313
- 📊 **Transaction History**: Query and track transactions history
1414
- 🔒 **Secure**: Built-in security best practices
1515

@@ -37,7 +37,7 @@ client = SantanderApiClient(
3737
)
3838

3939
# Make a simple PIX transfer
40-
from santander_sdk.pix import transfer_pix
40+
from santander_sdk import transfer_pix
4141

4242
transfer = transfer_pix(
4343
client,
@@ -47,7 +47,7 @@ transfer = transfer_pix(
4747
)
4848

4949
# Check transfer status
50-
from santander_sdk.pix import get_transfer
50+
from santander_sdk import get_transfer
5151

5252
status = get_transfer(transfer["id"])
5353
print(f"Transfer status: {status['status']}")
@@ -80,11 +80,11 @@ transfer = transfer_pix(
8080
)
8181
```
8282

83-
### List Payments to get usefull information
83+
### List Payments to get useful information
8484
You can get the list of payments made, filtering by payment type, recipient, etc. See `ListPaymentParams` for all possible filters. One use case, for example, is when you want to generate a receipt but don't have the payment ID.
8585

8686
```python
87-
from santander_sdk.payment_receipts import payment_list, ListPaymentParams
87+
from santander_sdk import payment_list, ListPaymentParams
8888

8989
payments = payment_list(client, ListPaymentParams(
9090
start_date="2025-01-01",
@@ -118,7 +118,7 @@ print('Receipt URL Location:', receipt_info["location"])
118118
print('Full Information:', receipt_info["data"])
119119
```
120120

121-
## Advance usage of Receipts
121+
## Advanced usage of Receipts
122122

123123
### Iterate Over Payments List
124124

@@ -206,6 +206,12 @@ pytest tests/
206206
- 💬 Join our [Discord community](link-to-discord) for discussions
207207
- 📖 Check our [FAQ](link-to-faq) for common questions
208208

209+
## Santander oficial documentation
210+
211+
- [User guide introduction](https://developer.santander.com.br/api/user-guide/user-guide-introduction)
212+
- [Pix, Boleto, transfer flow](https://developer.santander.com.br/api/documentacao/transferencias-pix-visao-geral#/)
213+
- [Receipts](https://developer.santander.com.br/api/documentacao/comprovantes-visao-geral#/)
214+
209215
## License
210216

211217
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

0 commit comments

Comments
 (0)