{"templateId":"markdown","sharedDataIds":{"sidebar":"sidebar-@l10n/pt/sidebars.yaml"},"props":{"metadata":{"markdoc":{"tagList":[]},"type":"markdown"},"seo":{"title":"Perfis de navegador"},"dynamicMarkdocComponents":[],"compilationErrors":[],"ast":{"$$mdtype":"Tag","name":"article","attributes":{},"children":[{"$$mdtype":"Tag","name":"Heading","attributes":{"level":1,"id":"perfis-de-navegador","__idx":0},"children":["Perfis de navegador"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Gerencie perfis de navegador antidetecção programaticamente por meio da API MoreLogin Local."]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"visão-geral","__idx":1},"children":["Visão geral"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["A API do navegador permite criar, iniciar e controlar perfis de navegador com impressões digitais exclusivas. Ele foi projetado para cenários de automação, como gerenciamento de várias contas, web scraping e testes automatizados."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["URL base"]},": ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["http://127.0.0.1:40000"]}]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["A API local é executada em sua máquina junto com o aplicativo de desktop MoreLogin. Todas as solicitações devem ser originadas da mesma máquina."]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"capacidades","__idx":2},"children":["Capacidades"]},{"$$mdtype":"Tag","name":"div","attributes":{"className":"md-table-wrapper"},"children":[{"$$mdtype":"Tag","name":"table","attributes":{"className":"md"},"children":[{"$$mdtype":"Tag","name":"thead","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Recurso"},"children":["Recurso"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Descrição"},"children":["Descrição"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Operações-chave"},"children":["Operações-chave"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Perfil do navegador"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Instâncias de navegador antidetecção"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Criar, iniciar, parar, excluir, modificar, verificar status"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Procurador"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Configurações de proxy para perfis"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Adicionar, atualizar, excluir, listar proxies"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Grupo"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Organize perfis em grupos"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Criar, editar, excluir grupos"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Etiqueta"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Rotular perfis com tags"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Criar, editar, excluir tags"]}]}]}]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"exemplo-rápido","__idx":3},"children":["Exemplo rápido"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Crie e inicie um perfil do navegador Chrome:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"# 1. Create a profile\ncurl -X POST \"http://127.0.0.1:40000/api/env/create/quick\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"browserTypeId\": 1, \"operatorSystemId\": 1, \"quantity\": 1}'\n\n# 2. Start the profile (use envId from step 1)\ncurl -X POST \"http://127.0.0.1:40000/api/env/start\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"envId\": \"YOUR_ENV_ID\"}'\n","lang":"bash"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Depois de começar, você recebe:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Porta de depuração"]}," — para conexão Selenium/Puppeteer"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Caminho do WebDriver"]}," — para automação do navegador"]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"integração-de-automação","__idx":4},"children":["Integração de automação"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"selênio","__idx":5},"children":["Selênio"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"python","header":{"controls":{"copy":{}}},"source":"from selenium import webdriver\n\noptions = webdriver.ChromeOptions()\noptions.debugger_address = \"127.0.0.1:DEBUG_PORT\"\ndriver = webdriver.Chrome(\n    executable_path=\"WEBDRIVER_PATH\",\n    options=options\n)\ndriver.get(\"https://example.com\")\n","lang":"python"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"marionetista","__idx":6},"children":["Marionetista"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"javascript","header":{"controls":{"copy":{}}},"source":"const puppeteer = require('puppeteer');\n\nconst browser = await puppeteer.connect({\n  browserWSEndpoint: 'ws://127.0.0.1:DEBUG_PORT'\n});\nconst page = await browser.newPage();\nawait page.goto('https://example.com');\n","lang":"javascript"},"children":[]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"requisitos","__idx":7},"children":["Requisitos"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Aplicativo de desktop MoreLogin ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["v2.15.0+"]}," instalado e em execução"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Conectado à sua conta MoreLogin"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["As solicitações devem ser originadas da máquina local"]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Observação"]},": a API Local também oferece suporte a endpoints de gerenciamento do Cloud Phone. Para operações do Cloud Phone, recomendamos usar a ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/pt/api-reference/cloud-phone"},"children":["API aberta"]}," para capacidade de acesso remoto."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Para obter detalhes de autenticação, consulte ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/pt/api-reference/getting-started/authentication"},"children":["Autenticação"]},"."]}]},"headings":[{"value":"Perfis de navegador","id":"perfis-de-navegador","depth":1},{"value":"Visão geral","id":"visão-geral","depth":2},{"value":"Capacidades","id":"capacidades","depth":2},{"value":"Exemplo rápido","id":"exemplo-rápido","depth":2},{"value":"Integração de automação","id":"integração-de-automação","depth":2},{"value":"Selênio","id":"selênio","depth":3},{"value":"Marionetista","id":"marionetista","depth":3},{"value":"Requisitos","id":"requisitos","depth":2}],"frontmatter":{"seo":{"title":"Perfis de navegador"}},"lastModified":"2026-06-10T11:47:34.000Z","pagePropGetterError":{"message":"","name":""}},"slug":"/pt/api-reference/browser","userData":{"isAuthenticated":false,"teams":["anonymous"]},"isPublic":true}