Okay, so we are back to you really wanting a proper programming interface to access data.
If you grab the text from that web page the same way I did for the other page you shared …
… and then look at the text returned…
Ir conteúdo Ir menu Ir rodapé
Campo de busca
pt_BR
• en_US
• es
Voltar
Indicadores financeiros
• Home
• Market Data e Índices
• Serviços de dados
• Market Data
• Consultas
• Mercado de Derivativos
• Indicadores
• Indicadores financeiros
Metodologia - Indicadores Financeiros
… you can see it does not contain those values.
If you view the same URL in your web browser, it does.
Shortcuts is not a web browser. It is not able to fully render a page - especially if that page is made up of multiple frames and multiple source pages like this new one is.
Instead, you probably want to target a different URL - one of the framed urls - https://sistemaswebb3-derivativos.b3.com.br/financialIndicatorsPage/?language=pt-br. If you view that page in your browser you see a page with a lot of the other bits of the original “page” removed - but one that includes the percentages you are after.
However, if you do the same check on the output for that frame URL in Shortcuts, you get the following output:
No, I didn’t forget to paste in the result. You get nothing,
Looking at the content of that page it is 95% JavaScript and CSS. Again Shortcuts is not a browser. When it gets the content of the URL, it gets the content of the URL. It does not render the page at the URL, pulling in all the other referenced resource files and running the JavaScript.
As I noted earlier, automating on iOS for web interactions can be quite limiting. You could probably utilise an app such as ShortWeb with Shortcuts to render the page and allow you to get the data, but as I’ve noted, you are relying on the websites not to change their layout or structure. If the data was held in the web page and they were just changing the rendering that would be one thing, but they are retrieving data from somewhere (a CMS linked to some other system or direct from that other system), so the ideal would be for you to reference that directly too.