Skip to content

maikehenrique/ApiLotofacilApi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

API Lotofácil CAIXA

Free API to track Lotofácil lottery results Lotteries CAIXA.
Developed as a way to improve and establish knowledge, it seeks to be a free, robust and open tool for those who want to carry out implementations like me.
I use the API created to create a free statistics website and help those who play specifically in the Lotofácil lottery, I leave the link for those who want to access and test it : Sorte Lotofácil.
With time I will be improving both API and my statistics site.

Return Examples

Currently, the database contains the lotofácil games but can be easily adapted to all other Caixa lotteries. It hasn't been adapted yet because my main focus is the lotofácil due to creating a specific statistics site for the same

  • Latest Result

[GET] http://45.159.228.184:8080/api/lotofacil/latest

Return Examples:

{
    "registros": [
        {
            "loteria": "lotofacil",
            "nome": "Lotofácil",
            "concurso": 2642,
            "data": "20/10/2022",
            "local": "ESPAÇODASORTE em SÃOPAULO,SP",
            "dezenas": [
                "02",
                "04",
                "05",
                "08",
                "09",
                "13",
                "14",
                "15",
                "16",
                "17",
                "19",
                "20",
                "21",
                "22",
                "24"
            ],
            "premiacoes": [
                {
                    "acertos": "15 Pontos",
                    "vencedores": 3,
                    "premio": "505.605,73"
                },
                {
                    "acertos": "14 Pontos",
                    "vencedores": 275,
                    "premio": "1.652,16"
                },
                {
                    "acertos": "13 Pontos",
                    "vencedores": 9355,
                    "premio": "25,00"
                },
                {
                    "acertos": "12 Pontos",
                    "vencedores": 113258,
                    "premio": "10,00"
                },
                {
                    "acertos": "11 Pontos",
                    "vencedores": 620320,
                    "premio": "5,00"
                }
            ],
            "estadosPremiados": [
                {
                    "nome": "Goiás",
                    "uf": "GO",
                    "vencedores": "1",
                    "latitude": "36.7156122",
                    "longitude": "-95.9435511",
                    "cidades": [
                        {
                            "cidade": "Heitoraí",
                            "vencedores": "1",
                            "latitude": "-15.7227332",
                            "longitude": "-49.82713750000001"
                        }
                    ]
                },
                {
                    "nome": "Minas Gerais",
                    "uf": "MG",
                    "vencedores": "1",
                    "latitude": "-18.512178",
                    "longitude": "-44.5550308",
                    "cidades": [
                        {
                            "cidade": "Muzambinho",
                            "vencedores": "1",
                            "latitude": "-21.3712593",
                            "longitude": "-46.5232197"
                        }
                    ]
                },
                {
                    "nome": "Pará",
                    "uf": "PA",
                    "vencedores": "1",
                    "latitude": "-1.9981271",
                    "longitude": "-54.9306152",
                    "cidades": [
                        {
                            "cidade": "Ananindeua",
                            "vencedores": "1",
                            "latitude": "-1.3650671",
                            "longitude": "-48.3746372"
                        }
                    ]
                }
            ],
            "acumulou": false,
            "acumuladaProxConcurso": "R$ 1,5 Milhão ",
            "dataProxConcurso": "21/10/2022",
            "proxConcurso": 2643
        }
    ]
}
  • Specific Result

[GET] http://45.159.228.184:8080/api/lotofacil/<concurso>

Lotofácil, contest 2642: http://45.159.228.184:8080/api/lotofacil/2642

{
    "registros": [
        {
            "data": "20/10/2022",
            "nome": "Lotofácil",
            "local": "ESPAÇODASORTE em SÃOPAULO,SP",
            "dezenas": [
                "02",
                "04",
                "05",
                "08",
                "09",
                "13",
                "14",
                "15",
                "16",
                "17",
                "19",
                "20",
                "21",
                "22",
                "24"
            ],
            "loteria": "lotofacil",
            "acumulou": false,
            "concurso": 2642,
            "premiacoes": [
                {
                    "premio": "505.605,73",
                    "acertos": "15 Pontos",
                    "vencedores": 3
                },
                {
                    "premio": "1.652,16",
                    "acertos": "14 Pontos",
                    "vencedores": 275
                },
                {
                    "premio": "25,00",
                    "acertos": "13 Pontos",
                    "vencedores": 9355
                },
                {
                    "premio": "10,00",
                    "acertos": "12 Pontos",
                    "vencedores": 113258
                },
                {
                    "premio": "5,00",
                    "acertos": "11 Pontos",
                    "vencedores": 620320
                }
            ],
            "estados_premiados": [
                {
                    "uf": "GO",
                    "nome": "Goiás",
                    "cidades": [
                        {
                            "cidade": "Heitoraí",
                            "latitude": "-15.7227332",
                            "longitude": "-49.82713750000001",
                            "vencedores": "1"
                        }
                    ],
                    "latitude": "36.7156122",
                    "longitude": "-95.9435511",
                    "vencedores": "1"
                },
                {
                    "uf": "MG",
                    "nome": "Minas Gerais",
                    "cidades": [
                        {
                            "cidade": "Muzambinho",
                            "latitude": "-21.3712593",
                            "longitude": "-46.5232197",
                            "vencedores": "1"
                        }
                    ],
                    "latitude": "-18.512178",
                    "longitude": "-44.5550308",
                    "vencedores": "1"
                },
                {
                    "uf": "PA",
                    "nome": "Pará",
                    "cidades": [
                        {
                            "cidade": "Ananindeua",
                            "latitude": "-1.3650671",
                            "longitude": "-48.3746372",
                            "vencedores": "1"
                        }
                    ],
                    "latitude": "-1.9981271",
                    "longitude": "-54.9306152",
                    "vencedores": "1"
                }
            ],
            "data_prox_concurso": "21/10/2022",
            "acumulada_prox_concurso": "R$ 1,5 Milhão "
        }
    ]
}

API Documentation

*URL: http://45.159.228.184:8080/api/lotofacil

[GET]

  • /api/lotofacil Returns all contests available for search
  • /api/lotofacil/{Concurso} Returns the result of a specific contest
  • /api/lotofacil/latest Returns the last contest available for search

Note: The API was developed intelligently where every 60 minutes it tries to update the database automatically, so it is not necessary to monitor or manually insert the new draws.

Documentation to run the project

* Configure and install Golang packages
    - go mod init apilotofacil 
    - go get
* Create a Postgresql Database
* Create table in pattern
```sql
    CREATE TABLE LOTERIA (
        CONCURSO 					BIGINT  NOT NULL,	
        LOTERIA						TEXT NULL,
        NOME						TEXT NULL,
        DATA 						TEXT NULL,
        LOCAL 						TEXT NULL,
        DEZENAS						JSONB NULL,
        PREMIACOES					JSONB NULL,
        ESTADOS_PREMIADOS			JSONB NULL,
        ACUMULOU					BOOL NULL,
        ACUMULADA_PROX_CONCURSO		TEXT,
        DATA_PROX_CONCURSO			TEXT NULL
        ,CONSTRAINT PK_CONCURSO PRIMARY KEY (CONCURSO)
    );
```

Contribution

Any contributions to this repository are welcome.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages