API Docs

API Rest rápida, poderosa e preparada para qualquer tipo de aplicação, com muitas funcionalidades úteis, atualizações e adições de recursos frequentes, junto com uma documentação detalhada e de facil acesso.

Autenticação

Para autenticar na API em solicitações GET, é nescessário usar o Query String ?apikey= para comprar sua apikey acesse o painel

Manipulação de Imagens

/jooj

Inverte e duplica metade de uma imagem ao lado da outra.

Request

GET

/jooj?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/jooj?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/ojjo

Divide a imagem ao meio horizontalmente e duplica a metade direita invertendo-a horizontalmente ao lado da metade original.

Request

GET /ojjo?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/ojjo?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/ship

Cria uma imagem personalizada shipando duas fotos.

Request

GET

/ship?img1={url}&img2={url}&r={number}

Parametros

url string Url da foto que será shipada
r number Um valor numérico de 0 a 100 que define a porcentagem do ship

Exemplo de Codigo - JS

                
                    const r = 100
                    const img1 = "https://becca.bot/src/logo.jpeg"
                    const img2 = "https://becca.bot/src/logo.jpeg"

                    const apiUrl = "https://api.becca.bot"
                    const endpoint = `/ship?img1=${img1}&img2=${img2}r=${r}`
                    
                    fetch(apiUrl + endpoint)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/lerfoto

Leio a imagem e envio o texto encontrado.

Request

GET

/lerfoto?img={url}

Parametros

url string Url da foto que será lida

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/lerfoto?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Exemplo de Resposta - JSON

                    
                        {
                            "status": 200,
                            "message": "Texto encontrado"
                        }
                    
                

/grayscale

Transformo as cores da sua imagem para escala de cinza.

Request

GET

/grayscale?img={url}

Parametros

url string Url da foto que será transformada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/grayscale?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/girarimg

Gira a imagem.

Request

GET

/girarimg?img={url}

Parametros

url string Url da foto que será girada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/girarimg?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/invertColor

Inverte as cores da imagem.

Request

GET

/invertColor?img={url}

Parametros

url string Url da foto que será transformada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/invertColor?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/addtocorner

Coloco uma imagem no canto inferior direito da outra.

Request

GET

/addtocorner?img1={url}&img2={url}

Parametros

url string Url da foto que será transformada

Exemplo de Codigo - JS

                
                    const img1 = "https://becca.bot/src/logo.jpeg"
                    const img2 = "https://becca.bot/src/logo.jpeg"

                    const apiUrl = "https://api.becca.bot"
                    const endpoint = `/addtocorner?img1=${img1}&img2=${img2}`
                    
                    fetch(apiUrl + endpoint)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Utilidades

/anagrama

Crio um anagrama de uma palavra aleatória.

Request

GET

/anagrama

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/anagrama"
                    
                    fetch(url + endpoint)
                        .then(response => response.json())
                        .then(json => {
                            console.log(json)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Exemplo de Resposta - JSON

                    
                        {
                            "status": 200,
                            "palavra": "sacrificial",
                            "anagrama": "ilasrifcaci"
                        }
                    
                

/conselho

Te retorno um conselho.

Request

GET

/conselho

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/conselho"
                    
                    fetch(url + endpoint)
                        .then(response => response.json())
                        .then(json => {
                            console.log(json)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Exemplo de Resposta - JSON

                    
                        {
                            "status": 200,
                            "message": "Faça uma pausa para descansar."
                        }
                    
                

/figu

Te retorno uma figurinha aleatória 512x512px em formato webp apropriado para whatsapp.

Request

GET

/figu

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/figu"
                    
                    fetch(url + endpoint)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Pesquisas

/cep

Busco por informações de um CEP.

Request

GET

/cep?q={q}

Parametros

q number Numero do cep a ser procurado.

Exemplo de Codigo - JS

                
                    const cep = "01000-001"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/cep?q="
                    
                    fetch(apiUrl + endpoint + cep)
                        .then(response => response.json())
                        .then(json => {
                            console.log(json)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Exemplo de Resposta - JSON

                    
                        {
                            "status": 200,
                                "result": {
                                    "cep": "59800971",
                                    "state": "RN",
                                    "city": "Martins",
                                    "neighborhood": "Povoado Lagoa Nova",
                                    "street": "Rua Principal",
                                    "service": "viacep"
                                }
                            }
                    
                

/dicio

Pesquiso por um termo no dicionário.

Request

GET

/dicio?word={word}

Parametros

word string Termo que será procurado no dicionário.

Exemplo de Codigo - JS

                
                    const palavra = "oi"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/dicio?word="
                    
                    fetch(apiUrl + endpoint + palavra)
                        .then(response => response.json())
                        .then(json => {
                            console.log(json)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Exemplo de Resposta - JSON

                    
                        {
                            "status": 200,
                            "word": "oi",
                            "url": "oi",
                            "synonyms": [
                              "viva",
                              "olá",
                              "como"
                            ],
                            "meanings": [
                              {
                                "partOfSpeech": "interjeição",
                                "meanings": [
                                  "[Brasil] Saudação usada para cumprimentar alguém, para chamar a atenção de outra pessoa ou para responder a uma solicitação ou chamado: oi, professor, o que você disse? -- Oi, tudo bem? Saiu correndo e nem disse oi. Maria, estou te chamando! -- Oi!"
                                ],
                                "etymology": "Etimologia (origem da palavra oi). Vocativo Expressivo."
                              }
                            ],
                            "sentences": [
                              {
                                "sentence": "Vivo esperando o dia em que ela me dirá: oi.",
                                "author": ""
                              },
                              {
                                "sentence": "Chamei-a durante horas e, como se nada tivesse acontecido, ela aparece com um simples \"oi\".",
                                "author": ""
                              },
                              {
                                "sentence": "Aquele colega é um chato! Não é capaz de dizer nem se quer um oi.",
                                "author": ""
                              }
                            ],
                            "syllables": [
                              "oi"
                            ]
                          }
                    
                

/ddi

Pesquiso por um ddi, retornando o país que ele pertence.

Request

GET

/ddi?q={q}

Parametros

q number DDI que será procurado.

Exemplo de Codigo - JS

                
                    const ddi = "55"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/ddi?q="
                    
                    fetch(apiUrl + endpoint + ddi)
                        .then(response => response.json())
                        .then(json => {
                            console.log(json)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Exemplo de Resposta - JSON

                    
                        {
                            "status": 200,
                            "result": {
                                "pais": "Brasil",
                                "img": "https:////upload.wikimedia.org/wikipedia/commons/thumb/0/05/Flag_of_Brazil.svg/22px-Flag_of_Brazil.svg.png",
                                "ddi": 55,
                                "continente": "América do Sul"
                            }
                        }
                    
                

/ddd

Pesquiso por um ddd, retornando as localidades brasileiras que ele pertence.

Request

GET

/ddd?q={q}

Parametros

q number DDD que será procurado.

Exemplo de Codigo - JS

                
                    const ddd = "11"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/ddd?q="
                    
                    fetch(apiUrl + endpoint + ddd)
                        .then(response => response.json())
                        .then(json => {
                            console.log(json)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Exemplo de Resposta - JSON

                    
                        {
                            "status": 200,
                            "result": {
                                    "state": "SP",
                                    "cities": [
                                        "EMBU",
                                        "VÁRZEA PAULISTA",
                                        "VARGEM GRANDE PAULISTA",
                                        "VARGEM",
                                        "TUIUTI",
                                        "TABOÃO DA SERRA",
                                        "SUZANO",
                                        "SÃO ROQUE",
                                        "SÃO PAULO",
                                        "SÃO LOURENÇO DA SERRA",
                                        "SÃO CAETANO DO SUL",
                                        "SÃO BERNARDO DO CAMPO",
                                        "SANTO ANDRÉ",
                                        "SANTANA DE PARNAÍBA",
                                        "SANTA ISABEL",
                                        "SALTO",
                                        "SALESÓPOLIS",
                                        "RIO GRANDE DA SERRA",
                                        "RIBEIRÃO PIRES",
                                        "POÁ",
                                        "PIRAPORA DO BOM JESUS",
                                        "PIRACAIA",
                                        "PINHALZINHO",
                                        "PEDRA BELA",
                                        "OSASCO",
                                        "NAZARÉ PAULISTA",
                                        "MORUNGABA",
                                        "MOGI DAS CRUZES",
                                        "MAUÁ",
                                        "MAIRIPORÃ",
                                        "MAIRINQUE",
                                        "JUQUITIBA",
                                        "JUNDIAÍ",
                                        "JOANÓPOLIS",
                                        "JARINU",
                                        "JANDIRA",
                                        "ITUPEVA",
                                        "ITU",
                                        "ITATIBA",
                                        "ITAQUAQUECETUBA",
                                        "ITAPEVI",
                                        "ITAPECERICA DA SERRA",
                                        "IGARATÁ",
                                        "GUARULHOS",
                                        "GUARAREMA",
                                        "FRANCO DA ROCHA",
                                        "FRANCISCO MORATO",
                                        "FERRAZ DE VASCONCELOS",
                                        "EMBU-GUAÇU",
                                        "DIADEMA",
                                        "COTIA",
                                        "CARAPICUÍBA",
                                        "CAMPO LIMPO PAULISTA",
                                        "CAJAMAR",
                                        "CAIEIRAS",
                                        "CABREÚVA",
                                        "BRAGANÇA PAULISTA",
                                        "BOM JESUS DOS PERDÕES",
                                        "BIRITIBA-MIRIM",
                                        "BARUERI",
                                        "ATIBAIA",
                                        "ARUJÁ",
                                        "ARAÇARIGUAMA",
                                        "ALUMÍNIO"
                                    ]
                                }
                            }
                    
                

/downloader

Baixo um video/imagem/audio do tiktok/instagram/facebook/twitter.

Request

GET

/downloader?url={url}

Parametros

url string Url do que deseja baixar.
raw number Se presente, irá retornar o primeiro resultado como buffer (opicional)

Exemplo de Codigo - JS

                
                    const url = "https://www.tiktok.com/@selenagomez/video/7281437289602059566"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/downloader?url="
                    
                    fetch(apiUrl + endpoint + url)
                        .then(response => response.json())
                        .then(json => {
                            console.log(json)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                    
                
            

Exemplo de Resposta - JSON

                    
                        {
                            "status": 200,
                            "result": {
                                "imageCount": 1,
                                "videoCount": 1,
                                "source": "tiktok",
                                "title": "TikTok Selena Gomez_2b",
                                "thumbnail": "https://p16-sign.tiktokcdn-us.com/obj/tos-useast5-p-0068-tx/oslzfAD9mCJlMA2MECEKhtNmp3hwyIAWVB8IwR?x-expires=1709319600&x-signature=VhCLCBMEuaJC7JjZH%2F6lob%2B83FQ%3D",
                                "duration": "00:06",
                                "links": [
                                    {
                                        "url": "https://allinonedownloader.com/system/api_b0ae720123cf.php?source=tiktok&title=TikTok+Selena+Gomez_2b&urld=https%3A%2F%2Fv16-webapp-prime.tiktok.com%2Fvideo%2Ftos%2Fmaliva%2Ftos-maliva-ve-0068c799-us%2FocIMEQBbI3DhAmzy9fsRtMmWN2JCmhBwp8mLA9%2F%3Fa%3D1988%26ch%3D0%26cr%3D3%26dr%3D0%26lr%3Dtiktok_m%26cd%3D0%257C0%257C1%257C%26cv%3D1%26br%3D3464%26bt%3D1732%26bti%3DNDU3ZjAwOg%253D%253D%26cs%3D0%26ds%3D3%26ft%3D4fUEKMMD8Zmo0AHYi94jVqIL-pWrKsd.%26mime_type%3Dvideo_mp4%26qs%3D0%26rc%3DNDk2ZWhoaDM1Ozg4OTY5ZkBpamZpbzw6Zm1nbjMzZzczNEAtYWMuNS9fXi4xNi41NjQuYSMzbGRycjRfajNgLS1kMS9zcw%253D%253D%26btag%3De00088000%26expire%3D1709320004%26l%3D202402281906371B55E0B2B735284C0869%26ply_type%3D2%26policy%3D2%26signature%3Df67a2a7ced93098cd741ce519880fa55%26tk%3Dtt_chain_token&ct=1709147198&hash=f58319a3a3c00e23bef19330e0a8b1d2",
                                        "type": "mp4",
                                        "size": "1.43 MB",
                                        "quality": "hd",
                                        "mute": "no"
                                    },
                                    {
                                        "url": "https://p16-sign.tiktokcdn-us.com/obj/tos-useast5-p-0068-tx/oslzfAD9mCJlMA2MECEKhtNmp3hwyIAWVB8IwR?x-expires=1709319600&x-signature=VhCLCBMEuaJC7JjZH%2F6lob%2B83FQ%3D",
                                        "type": "jpg",
                                        "size": "132.58 KB",
                                        "quality": "HD",
                                        "mute": "yes"
                                    }
                                ],
                                    "cookietime": "1709147198"
                                }
                            }
                    
                

Diversão

/termo

Crio/Continuo o Jogo do Termo, se não colocar nenhum parametro na url, a api criará um novo jogo.

Request

GET

/termo?p={p}&palavra={palavra}

Parametros

p array Coloque todas as suas tentativas de palavras no query string (p=resposta), repita isso por 5 vezes ou menos
palavra string Palavra que deverá ser adivinhada (deve conter exatamente 5 letras)

Exemplo de Codigo - JS

                
                    const tentativas = ["papel", "total"].join('&p=')
                    const palavra = "pasta"

                    const apiUrl = "https://api.becca.bot"
                    const endpoint = `/termo?p=${tentativas}&palavra=${palavra}`
                    
                    fetch(apiUrl + endpoint)
                        .then(response => response.json())
                        .then(json => {
                            console.log(json)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Exemplo de Resposta - JSON

                    
                        {
                            "status": 200,
                            "win": false,
                            "attempts": 2,
                            "palavra": "pasta",
                            "imgUrl": "https://i.imgur.com/oKSWAw2.png"
                        }
                    
                

/cacapalavras

Crio o Jogo do Caça Palavras, retorno uma imagem com as palavras escondidas e as palavras a serem procuradas

Request

GET

/cacapalavras?d={d}

Parametros

d number A dificuldade do jogo, pode ser 1 (facil), 2 (medio), 3 (dificil)

Exemplo de Codigo - JS

                
                    const dificuldade = 1
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/cacapalavras?d="
                    
                    fetch(apiUrl + endpoint + dificuldade)
                        .then(response => response.json())
                        .then(json => {
                            console.log(json)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Exemplo de Resposta - JSON

                    
                        {
                            "status": 200,
                            "palavras": [
                                "ralacao",
                                "oferece",
                                "visivel",
                                "sordido",
                                "imposto"
                            ],
                            "imgUrl": "https://i.imgur.com/sV9iSsn.png"
                            }
                    
                

/eununca

Te retorno uma pergunta de eu nunca.

Request

GET

/eununca

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/eununca"
                    
                    fetch(url + endpoint)
                        .then(response => response.json())
                        .then(json => {
                            console.log(json)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Exemplo de Resposta - JSON

                    
                        {
                            "status": 200,
                            "message": "Eu nunca seduzi alguém."
                        }
                    
                

/cantada

Te retorno uma cantada.

Request

GET

/cantada

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/cantada"
                    
                    fetch(url + endpoint)
                        .then(response => response.json())
                        .then(json => {
                            console.log(json)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Exemplo de Resposta - JSON

                    
                        {
                            "status": 200,
                            "message": "Você não é massagem cardíaca, mas reanima o meu coração!"
                        }
                    
                

/escolher

Duas escolhas, escolha somente uma.

Request

GET

/escolher

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/escolher"
                    
                    fetch(url + endpoint)
                        .then(response => response.json())
                        .then(json => {
                            console.log(json)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Exemplo de Resposta - JSON

                    
                        {
                            "status": 200,
                            "esc1": "morrer e seu corpo ser encontrado sobre um montão de brinquedos sexuais",
                            "esc2": "sobre um montão de drogas"
                        }
                    
                

Conversores

/giftomp4

Transformo um gif para mp4 e retorno o buffer.

Request

GET

/giftomp4?gif={gif}

Parametros

gif string Url do gif a ser transformado.

Exemplo de Codigo - JS

                
                    const gifUrl = "https://gizmodo.uol.com.br/wp-content/blogs.dir/8/files/2021/02/nyan-cat.gif"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/giftomp4?gif="
                    
                    fetch(apiUrl + endpoint + gifUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/giftowebp

Transformo um gif para webp e retorno o buffer.

Request

GET

/giftowebp?gif={gif}

Parametros

gif string Url do gif a ser transformado.

Exemplo de Codigo - JS

                
                    const gifUrl = "https://gizmodo.uol.com.br/wp-content/blogs.dir/8/files/2021/02/nyan-cat.gif"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/giftowebp?gif="
                    
                    fetch(apiUrl + endpoint + gifUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Efeitos LGBT

/gay

Adiciona um filtro da bandeira gay a sua imagem.

Request

GET

/gay?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/gay?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/trans

Adiciona um filtro da bandeira trans a sua imagem.

Request

GET

/trans?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/trans?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/lesbic

Adiciona um filtro da bandeira lesbica a sua imagem.

Request

GET

/lesbic?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/lesbic?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/pan

Adiciona um filtro da bandeira pan a sua imagem.

Request

GET

/pan?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/pan?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/bi

Adiciona um filtro da bandeira bi a sua imagem.

Request

GET

/bi?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/bi?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Gifs

/beijo

Te retorno um gif de beijo de anime em formato mp4.

Request

GET

/beijo

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/beijo"
                    
                    fetch(url + endpoint)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/tapa

Te retorno um gif de tapa de anime em formato mp4.

Request

GET

/tapa

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/tapa"
                    
                    fetch(url + endpoint)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/abraco

Te retorno um gif de abraço de anime em formato mp4.

Request

GET

/abraco

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/abraco"
                    
                    fetch(url + endpoint)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/cocegas

Te retorno um gif de cócegas de anime em formato mp4.

Request

GET

/cocegas

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/cocegas"
                    
                    fetch(url + endpoint)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/acenar

Te retorno um gif de acenar de anime em formato mp4.

Request

GET

/acenar

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/acenar"
                    
                    fetch(url + endpoint)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/alimentar

Te retorno um gif de alimentar de anime em formato mp4.

Request

GET

/alimentar

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/alimentar"
                    
                    fetch(url + endpoint)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/carinho

Te retorno um gif de carinho de anime em formato mp4.

Request

GET

/carinho

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/carinho"
                    
                    fetch(url + endpoint)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/chutar

Te retorno um gif de chutar de anime em formato mp4.

Request

GET

/chutar

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/chutar"
                    
                    fetch(url + endpoint)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/cumprimentar

Te retorno um gif de cumprimentar de anime em formato mp4.

Request

GET

/cumprimentar

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/cumprimentar"
                    
                    fetch(url + endpoint)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/cutucar

Te retorno um gif de cutucar de anime em formato mp4.

Request

GET

/cutucar

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/cutucar"
                    
                    fetch(url + endpoint)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/morder

Te retorno um gif de morder de anime em formato mp4.

Request

GET

/morder

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/morder"
                    
                    fetch(url + endpoint)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/massagem

Te retorno um gif de massagem de anime em formato mp4.

Request

GET

/massagem

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/massagem"
                    
                    fetch(url + endpoint)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/comer

Te retorno um gif de comer de anime em formato mp4.

Request

GET

/comer

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/comer"
                    
                    fetch(url + endpoint)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            
/

/tapinha

Te retorno um gif de tapinha de anime em formato mp4.

Request

GET

/tapinha

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/tapinha"
                    
                    fetch(url + endpoint)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Mememakers

/bolso1

Coloca sua imagem na televisão do bolsonaro.

Request

GET

/bolso1?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/bolso1?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/bolso2

Coloca sua imagem em um quadro na mão do bolsonaro.

Request

GET

/bolso2?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/bolso2?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/bolso3

Coloca sua imagem na televisão do escritório do bolsonaro.

Request

GET

/bolso3?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/bolso3?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/sponge

Coloca sua imagem em uma montagem do Bob Esponja.

Request

GET

/sponge?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/sponge?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/briggs

Coloca sua imagem na mão do briggs.

Request

GET

/briggs?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/briggs?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/enaldinhob

Coloca sua imagem em uma bandeira na mão do enaldinho pereira.

Request

GET

/enaldinhob?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/enaldinhob?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/enaldinhotv

Coloca sua imagem na televisão do enaldinho pereira.

Request

GET

/enaldinhotv?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/enaldinhotv?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/markz

Coloca sua imagem ao lado do mark zukenberg.

Request

GET

/markz?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/markz?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/pepe

Coloca sua imagem em uma montagem com o pepe.

Request

GET

/pepe?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/pepe?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/paper

Coloca sua imagem em uma montagem em uma folha.

Request

GET

/paper?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/paper?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/shottv

Coloca sua imagem em uma televisão sendo mirada por uma arma.

Request

GET

/shottv?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/shottv?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/romero

Coloca sua imagem em uma pintura.

Request

GET

/romero?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/romero?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/morrepraga

Coloca sua imagem no meme morre praga.

Request

GET

/morrepraga?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/morrepraga?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/wolverine

Coloca sua imagem em uma montagem com o wolverine.

Request

GET

/wolverine?img={url}

Parametros

url string Url da imagem a ser modificada

Exemplo de Codigo - JS

                
                    const imgUrl = "https://becca.bot/src/logo.jpeg"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/wolverine?img="
                    
                    fetch(apiUrl + endpoint + imgUrl)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Emojis

/getEmj

Te mando todas as informações de um emoji, bem como as imagens dele de cada diferente marca.

Request

GET

/getEmj?q={q}

Parametros

q string O emoji que será procurado (precisa ser o emoji, e não o nome dele).

Exemplo de Codigo - JS

                
                    const emj = "😀"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/getEmj?q="
                    
                    fetch(apiUrl + endpoint + emj)
                        .then(response => response.json())
                        .then(json => {
                            console.log(json)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Exemplo de Resposta - JSON

                    
                        {
                            "status": 200,
                            "result": {
                                "code": [
                                    "1F600"
                                ],
                                "emoji": "😀",
                                "name": "grinning face",
                                "category": "Smileys & Emotion",
                                "subcategory": "face-smiling",
                                "support": {
                                    "apple": true,
                                    "google": true,
                                    "facebook": true,
                                    "windows": true,
                                    "twitter": true,
                                    "joypixels": true,
                                    "samsung": true,
                                    "gmail": true,
                                    "softbank": false,
                                    "docomo": false,
                                    "kddi": false
                                },
                                "images": {
                                    "apple": Base64,
                                    "google": Base64,
                                    "facebook": Base64,
                                    "windows": Base64,
                                    "twitter": Base64,
                                    "joypixels": Base64,
                                    "samsung": Base64,
                                    "gmail": Base64,
                                    "softbank": Base64,
                                    "docomo": Base64,
                                    "kddi": Base64
                                }
                            }
                        }
                    
                

/randomEmj

Te mando todas as informações de um emoji aleatório, bem como as imagens dele de cada diferente marca.

Request

GET

/randomEmj

Exemplo de Codigo - JS

                
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/randomEmj"
                    
                    fetch(url + endpoint)
                        .then(response => response.json())
                        .then(json => {
                            console.log(json)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Exemplo de Resposta - JSON

                    
                        {
                            "status": 200,
                            "result": {
                                "code": [
                                    "1F600"
                                ],
                                "emoji": "😀",
                                "name": "grinning face",
                                "category": "Smileys & Emotion",
                                "subcategory": "face-smiling",
                                "support": {
                                    "apple": true,
                                    "google": true,
                                    "facebook": true,
                                    "windows": true,
                                    "twitter": true,
                                    "joypixels": true,
                                    "samsung": true,
                                    "gmail": true,
                                    "softbank": false,
                                    "docomo": false,
                                    "kddi": false
                                },
                                "images": {
                                    "apple": Base64,
                                    "google": Base64,
                                    "facebook": Base64,
                                    "windows": Base64,
                                    "twitter": Base64,
                                    "joypixels": Base64,
                                    "samsung": Base64,
                                    "gmail": Base64,
                                    "softbank": Base64,
                                    "docomo": Base64,
                                    "kddi": Base64
                                }
                            }
                        }
                    
                

Logos

/textpro/letterpress

Cria uma logo (imagem) "letterpress" do seu texto.

Request

GET

/textpro/letterpress?text={text}

Parametros

text string Texto que será exibido na logo

Exemplo de Codigo - JS

                
                    const text = "oii"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/textpro/letterpress?text="
                    
                    fetch(apiUrl + endpoint + text)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/textpro/sunset

Cria uma logo (imagem) "sunset" do seu texto.

Request

GET

/textpro/sunset?text={text}

Parametros

text string Texto que será exibido na logo

Exemplo de Codigo - JS

                
                    const text = "oii"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/textpro/sunset?text="
                    
                    fetch(apiUrl + endpoint + text)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/textpro/kids

Cria uma logo (imagem) "kids" do seu texto.

Request

GET

/textpro/kids?text={text}

Parametros

text string Texto que será exibido na logo

Exemplo de Codigo - JS

                
                    const text = "oii"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/textpro/kids?text="
                    
                    fetch(apiUrl + endpoint + text)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/textpro/ice

Cria uma logo (imagem) "ice" do seu texto.

Request

GET

/textpro/ice?text={text}

Parametros

text string Texto que será exibido na logo

Exemplo de Codigo - JS

                
                    const text = "oii"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/textpro/ice?text="
                    
                    fetch(apiUrl + endpoint + text)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/textpro/cat

Cria uma logo (imagem) "cat" do seu texto.

Request

GET

/textpro/cat?text={text}

Parametros

text string Texto que será exibido na logo

Exemplo de Codigo - JS

                
                    const text = "oii"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/textpro/cat?text="
                    
                    fetch(apiUrl + endpoint + text)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/textpro/transformer

Cria uma logo (imagem) "transformer" do seu texto.

Request

GET

/textpro/transformer?text={text}

Parametros

text string Texto que será exibido na logo

Exemplo de Codigo - JS

                
                    const text = "oii"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/textpro/transformer?text="
                    
                    fetch(apiUrl + endpoint + text)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/textpro/snow

Cria uma logo (imagem) "snow" do seu texto.

Request

GET

/textpro/snow?text={text}

Parametros

text string Texto que será exibido na logo

Exemplo de Codigo - JS

                
                    const text = "oii"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/textpro/snow?text="
                    
                    fetch(apiUrl + endpoint + text)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/textpro/thunder

Cria uma logo (imagem) "thunder" do seu texto.

Request

GET

/textpro/thunder?text={text}

Parametros

text string Texto que será exibido na logo

Exemplo de Codigo - JS

                
                    const text = "oii"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/textpro/thunder?text="
                    
                    fetch(apiUrl + endpoint + text)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/textpro/frozen

Cria uma logo (imagem) "frozen" do seu texto.

Request

GET

/textpro/frozen?text={text}

Parametros

text string Texto que será exibido na logo

Exemplo de Codigo - JS

                
                    const text = "oii"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/textpro/frozen?text="
                    
                    fetch(apiUrl + endpoint + text)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/textpro/harryp

Cria uma logo (imagem) "harryp" do seu texto.

Request

GET

/textpro/harryp?text={text}

Parametros

text string Texto que será exibido na logo

Exemplo de Codigo - JS

                
                    const text = "oii"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/textpro/harryp?text="
                    
                    fetch(apiUrl + endpoint + text)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

Logos de Botões

/buttonlogo/ytgold

Coloco seu texto na placa de ouro do Youtube.

Request

GET

/buttonlogo/ytgold?text={text}

Parametros

text string Texto que será exibido na logo

Exemplo de Codigo - JS

                
                    const text = "oii"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/buttonlogo/ytgold?text="
                    
                    fetch(apiUrl + endpoint + text)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
            

/buttonlogo/ytsilver

Coloco seu texto na placa de prata do Youtube.

Request

GET

/buttonlogo/ytsilver?text={text}

Parametros

text string Texto que será exibido na logo

Exemplo de Codigo - JS

                
                    const text = "oii"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/buttonlogo/ytsilver?text="
                    
                    fetch(apiUrl + endpoint + text)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
                
            

/buttonlogo/fbgold

Coloco seu texto na placa de ouro do Facebook.

Request

GET

/buttonlogo/fbgold?text={text}

Parametros

text string Texto que será exibido na logo

Exemplo de Codigo - JS

                
                    const text = "oii"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/buttonlogo/fbgold?text="
                    
                    fetch(apiUrl + endpoint + text)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
                
            

/buttonlogo/fbsilver

Coloco seu texto na placa de prata do Facebook.

Request

GET

/buttonlogo/fbsilver?text={text}

Parametros

text string Texto que será exibido na logo

Exemplo de Codigo - JS

                
                    const text = "oii"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/buttonlogo/fbsilver?text="
                    
                    fetch(apiUrl + endpoint + text)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
                
            

/buttonlogo/iggold

Coloco seu texto na placa de ouro do Instagram.

Request

GET

/buttonlogo/iggold?text={text}

Parametros

text string Texto que será exibido na logo

Exemplo de Codigo - JS

                
                    const text = "oii"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/buttonlogo/iggold?text="
                    
                    fetch(apiUrl + endpoint + text)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
                
            

/buttonlogo/igsilver

Coloco seu texto na placa de prata do Instagram.

Request

GET

/buttonlogo/igsilver?text={text}

Parametros

text string Texto que será exibido na logo

Exemplo de Codigo - JS

                
                    const text = "oii"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/buttonlogo/igsilver?text="
                    
                    fetch(apiUrl + endpoint + text)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
                
            

/buttonlogo/ttgold

Coloco seu texto na placa de ouro do Twitter.

Request

GET

/buttonlogo/ttgold?text={text}

Parametros

text string Texto que será exibido na logo

Exemplo de Codigo - JS

                
                    const text = "oii"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/buttonlogo/ttgold?text="
                    
                    fetch(apiUrl + endpoint + text)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })
                
                
            

/buttonlogo/ttsilver

Coloco seu texto na placa de prata do Twitter.

Request

GET

/buttonlogo/ttsilver?text={text}

Parametros

text string Texto que será exibido na logo

Exemplo de Codigo - JS

                
                    const text = "oii"
                    const apiUrl = "https://api.becca.bot"
                    const endpoint = "/buttonlogo/ttsilver?text="
                    
                    fetch(apiUrl + endpoint + text)
                        .then(response => response.arrayBuffer())
                        .then(buffer => {
                            console.log(buffer)
                        })
                        .catch(error => {
                            console.error(error)
                        })