Get data from any page you want to get data from.
Need to talk to someone? Contact us—we’d love to help.
Get data from any page you want to get data from.
Need to talk to someone? Contact us—we’d love to help.
We are still busy preparing this batch of data. Please come back in a few minutes.
Seems like this data source was never ran before...
Changes are only available only when you have ran at least a second time.
Nope... guess no Martians around... Maybe set the webhook URL before pressing this button again...
job title | company | ratings | location | summary | date_posted | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|---|---|---|---|
Banking & Financial Services Contractor Opportunities | Accenture | 14,543 | United Kingdom | Accenture deliver a range of BPO services across banking and financi... | 20 days ago | https://www.indeed.co.uk/Financial-Services-jobs?vjk=bd318ded83eb21bf | https://www.indeed.co.uk/jobs?q=Financial+Services&start=10 | 2018-09-05 05:32:06 UTC | 2018-09-05 05:32:06 UTC | 2018-09-05 05:32:06 UTC |
Graduate Financial Services Associate Consultant 2018 | Capgemini | 5,763 | London | Capgemini Financial Services brings together deep industry experienc... | 30+ days ago | https://www.indeed.co.uk/Financial-Services-jobs?vjk=bd318ded83eb21bf | https://www.indeed.co.uk/jobs?q=Financial+Services&start=10 | 2018-09-05 05:32:06 UTC | 2018-09-05 05:32:06 UTC | 2018-09-05 05:32:06 UTC |
Trainee Financial Investigator | North Yorkshire County Council | 62 | Northallerton | Trainee Financial Investigator, North Yorkshire Trading Standards. O... | 17 hours ago | https://www.indeed.co.uk/Financial-Services-jobs?vjk=bd318ded83eb21bf | https://www.indeed.co.uk/jobs?q=Financial+Services&start=10 | 2018-09-05 05:32:06 UTC | 2018-09-05 05:32:06 UTC | 2018-09-05 05:32:06 UTC |
Financial Services Assistant | CWP | 39 | Chester | An exciting opportunity has arisen for a Band 2 Financial Services A... | 13 hours ago | https://www.indeed.co.uk/Financial-Services-jobs?vjk=bd318ded83eb21bf | https://www.indeed.co.uk/jobs?q=Financial+Services&start=10 | 2018-09-05 05:32:06 UTC | 2018-09-05 05:32:06 UTC | 2018-09-05 05:32:06 UTC |
Banking & Financial Services Consultant (Contractor) | Bridgeforce | 2 | London | 2-6 years of relevant work experience in banking or other type of fi... | 28 days ago | https://www.indeed.co.uk/Financial-Services-jobs?vjk=bd318ded83eb21bf | https://www.indeed.co.uk/jobs?q=Financial+Services&start=10 | 2018-09-05 05:32:06 UTC | 2018-09-05 05:32:06 UTC | 2018-09-05 05:32:06 UTC |
Graduate Scheme - Financial Services (Sales) | NFU Mutual | 44 | Stratford-upon-Avon | We are looking for aspiring graduates to join our Financial Services... | 59 minutes ago | https://www.indeed.co.uk/Financial-Services-jobs?vjk=bd318ded83eb21bf | https://www.indeed.co.uk/jobs?q=Financial+Services&start=10 | 2018-09-05 05:32:06 UTC | 2018-09-05 05:32:06 UTC | 2018-09-05 05:32:06 UTC |
Financial Services Audit Graduate | BDO | 972 | London | Our dedicated financial services group provides services to clients ... | 1 day ago | https://www.indeed.co.uk/Financial-Services-jobs?vjk=bd318ded83eb21bf | https://www.indeed.co.uk/jobs?q=Financial+Services&start=10 | 2018-09-05 05:32:06 UTC | 2018-09-05 05:32:06 UTC | 2018-09-05 05:32:06 UTC |
Audit Graduate - Financial Services Advisory | BDO | 972 | London | O Delivering internal audit and assurance reviews across a wide vari... | 1 day ago | https://www.indeed.co.uk/Financial-Services-jobs?vjk=bd318ded83eb21bf | https://www.indeed.co.uk/jobs?q=Financial+Services&start=10 | 2018-09-05 05:32:06 UTC | 2018-09-05 05:32:06 UTC | 2018-09-05 05:32:06 UTC |
Anti Money-Laundering Analyst - Financial Services - UK | MThree Alumni | London | How financial services companies can be exploited as a vehicle for f... | 18 days ago | https://www.indeed.co.uk/Financial-Services-jobs?vjk=bd318ded83eb21bf | https://www.indeed.co.uk/jobs?q=Financial+Services&start=10 | 2018-09-05 05:32:06 UTC | 2018-09-05 05:32:06 UTC | 2018-09-05 05:32:06 UTC | |
Opportunities across all levels in Financial Services Transa... | EY | 5,466 | Bristol | Were looking to recruit experienced Transaction Advisory Services s... | 30+ days ago | https://www.indeed.co.uk/Financial-Services-jobs?vjk=bd318ded83eb21bf | https://www.indeed.co.uk/jobs?q=Financial+Services&start=10 | 2018-09-05 05:32:06 UTC | 2018-09-05 05:32:06 UTC | 2018-09-05 05:32:06 UTC |
Sample code snippets to quickly import data set into your application
For more information on how to automatically trigger an import please reference our WebHook API guide
Integrating with Java
import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.URL; import java.net.URLConnection; import java.util.Arrays; public class HelloWorld { public static void main(String[] args) { try { URL urlCSV = new URL( "https://cache.getdata.io/n7629_e2321d2024173271faf6a90764dbe428eses/latest_all.csv" ); URLConnection urlConn = urlCSV.openConnection(); InputStreamReader inputCSV = new InputStreamReader( ((URLConnection) urlConn).getInputStream() ); BufferedReader br = new BufferedReader(inputCSV); String line; String[] fields; while ((line = br.readLine()) != null) { // Each row fields = line.split(","); System.out.println(Arrays.toString(fields)); } // clean up buffered reader br.close(); } catch (Exception e) { System.out.println(e.getMessage()); } } }
Integrating with NodeJs
const csv = require('csv-parser'); const https = require('https'); const fs = require('fs'); const file = fs.createWriteStream("temp_download.csv"); const request = https.get( "https://cache.getdata.io/n7629_e2321d2024173271faf6a90764dbe428eses/latest_all.csv", function(response) { response.pipe(file); } ); file.on('finish', function() { file.close(); fs.createReadStream('temp_download.csv').pipe(csv()).on('data', (row) => { // Each row console.log(row); }).on('end', () => { console.log('CSV file successfully processed'); }); });
Integrating with PHP
$data = file_get_contents("https://cache.getdata.io/n7629_e2321d2024173271faf6a90764dbe428eses/latest_all.csv"); $rows = explode("\n",$data); $s = array(); foreach($rows as $row) { # Each row var_dump( $row); }
Integrating with Python
import csv import urllib2 url = 'https://cache.getdata.io/n7629_e2321d2024173271faf6a90764dbe428eses/latest_all.csv' response = urllib2.urlopen(url) cr = csv.reader(response) for row in cr: # Each row print row
Integrating with Ruby
require 'open-uri' require 'tempfile' require 'csv' temp_file = Tempfile.new( "getdata", :encoding => 'ascii-8bit') temp_file << open("https://cache.getdata.io/n7629_e2321d2024173271faf6a90764dbe428eses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end
created on 2025-02-10