Results 1 to 11 of 11

Thread: Telefoonboek/goudengids API

  1. #1

    Telefoonboek/goudengids API

    Hallo hallo,

    Bestaat er zoiets als een telefoonboek/goudengids API? Zou graag automatisch telefoonnummers vinden bij bepaalde bedrijven.

    Bij voorbaat dank!

  2. #2
    Fornicatorus Formicidae VideoRipper's Avatar
    Join Date
    Mar 2005
    Location
    Vicus Saltus Orientalem
    Posts
    5,708
    Voor zover ik weet hebben sites als telefoonboek.nl geen API naar buiten toe.
    Dit heeft voornamelijk te maken met privacywetgeving, maar vooral ook geld.

    Een eenvoudige koppeling met bijvoorbeeld een Postcode API kost al geld.
    Oké: de eerste 100 aanroepen oid zijn gratis, maar in bedrijfsomgevingen
    (hoge aanroepaantallen) mag je toch echt gaan betalen.
    TMemoryLeak.Create(Nil);

  3. #3
    Ja, ik dacht ook dat de telefoongids wel een koppeling zou hebben maar dat deze behoorlijk wat kost.

    Maar is het niet makkelijker de Google API te gebruiken?
    Gewoon even een key aanmaken en je krijgt een heleboel requests gratis
    (standaard 1.000, 150.000 na verificatie en ongelimiteerd op verzoek).
    Documentatie: Place Search en Place Details

    B.v. zoeken op Eetcafe Magere brug in Amsterdam:
    Code:
    https://maps.googleapis.com/maps/api/place/textsearch/xml?query=Eetcafe+Magere+brug+in+Amsterdam&key=YOUR_API_KEY
    Geeft een place_id. Deze place_id kun je overigens opslaan bij de klant want die zal verder niet meer wijzigen.

    Je kunt de parameters aanpassen met exact adres e.d. precies zoals je wenst.
    Deze query geeft het volgende:
    XML Code:
    1. <?xml version="1.0" encoding="UTF-8"?>
    2. <PlaceSearchResponse>
    3.  <status>OK</status>
    4.  <result>
    5.   <name>Eetcafé de Magere Brug</name>
    6.   <type>restaurant</type>
    7.   <type>food</type>
    8.   <type>point_of_interest</type>
    9.   <type>establishment</type>
    10.   <formatted_address>Amstel 81, 1018 EK Amsterdam, Netherlands</formatted_address>
    11.   <geometry>
    12.    <location>
    13.     <lat>52.3636720</lat>
    14.     <lng>4.9032639</lng>
    15.    </location>
    16.    <viewport>
    17.     <southwest>
    18.      <lat>52.3623023</lat>
    19.      <lng>4.9018063</lng>
    20.     </southwest>
    21.     <northeast>
    22.      <lat>52.3650002</lat>
    23.      <lng>4.9045042</lng>
    24.     </northeast>
    25.    </viewport>
    26.   </geometry>
    27.   <rating>4.1</rating>
    28.   <icon>https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png</icon>
    29.   <reference>CmRRAAAA0nq3oDrdOqy92ObUjJxp40Ujd8AKYPWYpGJsMSESLqC5ggCYGRV9ZFFKfJ-X2dYqxrZaPXH1IKqObMoKnkJp2U2evnKD3hVHQaBsa2xGnCJLrYaC3ZUUuG3b8LEyY1XdEhBOl7L4toL0mhKlYEv48CbdGhSKiA7PcVdZ1b6Rw90tuk_krws2Aw</reference>
    30.   <id>c2ca25884fc92af7d2a4659d46fcc7e08ace7427</id>
    31.   <opening_hours>
    32.    <open_now>true</open_now>
    33.   </opening_hours>
    34.   <photo>
    35.    <photo_reference>CmRYAAAA8LsbWXhEbr1uHfsbBNCngGF01ZY2NahRzpHfsosRVCrIpjz8AolW4kK26ChdfIG4JSvQlxyJvrCdVbylLo2kTBn19KKiOS9zMY4ZIUoQiNdqhE8LuNBKu8hrPKs_fidsEhCofFBrlZ-R-oPBj8ocLjALGhQAT6U3ZpY79tpe3-LT_GFGsn9e_w</photo_reference>
    36.    <width>601</width>
    37.    <height>600</height>
    38.    <html_attribution>&lt;a href=&quot;[url]https://maps.google.com/maps/contrib/103898665472041722586/photos&quot;&gt;Eetcafé[/url] de Magere Brug&lt;/a&gt;</html_attribution>
    39.   </photo>
    40.   <place_id>ChIJu6jwV5YJxkcRiwoVtcybCiM</place_id>
    41.  </result>
    42. </PlaceSearchResponse>
    Zie de place_id onderaan (ChIJu6jwV5YJxkcRiwoVtcybCiM).

    Vervolgens kun je met details query de details ophalen:
    Code:
    https://maps.googleapis.com/maps/api/place/details/xml?placeid=ChIJu6jwV5YJxkcRiwoVtcybCiM&key=YOUR_API_KEY
    Dat geeft dit:
    XML Code:
    1. <?xml version="1.0" encoding="UTF-8"?>
    2. <PlaceDetailsResponse>
    3.  <status>OK</status>
    4.  <result>
    5.   <name>Eetcafé de Magere Brug</name>
    6.   <vicinity>Amstel 81, Amsterdam</vicinity>
    7.   <type>restaurant</type>
    8.   <type>food</type>
    9.   <type>point_of_interest</type>
    10.   <type>establishment</type>
    11.   <formatted_phone_number>020 221 3400</formatted_phone_number>
    12.   <formatted_address>Amstel 81, 1018 EK Amsterdam, Netherlands</formatted_address>
    13.   <address_component>
    14.    <long_name>81</long_name>
    15.    <short_name>81</short_name>
    16.    <type>street_number</type>
    17.   </address_component>
    18.   <address_component>
    19.    <long_name>Amstel</long_name>
    20.    <short_name>Amstel</short_name>
    21.    <type>route</type>
    22.   </address_component>
    23.   <address_component>
    24.    <long_name>Centrum</long_name>
    25.    <short_name>Centrum</short_name>
    26.    <type>sublocality_level_1</type>
    27.    <type>sublocality</type>
    28.    <type>political</type>
    29.   </address_component>
    30.   <address_component>
    31.    <long_name>Amsterdam</long_name>
    32.    <short_name>Amsterdam</short_name>
    33.    <type>locality</type>
    34.    <type>political</type>
    35.   </address_component>
    36.   <address_component>
    37.    <long_name>Amsterdam</long_name>
    38.    <short_name>Amsterdam</short_name>
    39.    <type>administrative_area_level_2</type>
    40.    <type>political</type>
    41.   </address_component>
    42.   <address_component>
    43.    <long_name>Noord-Holland</long_name>
    44.    <short_name>NH</short_name>
    45.    <type>administrative_area_level_1</type>
    46.    <type>political</type>
    47.   </address_component>
    48.   <address_component>
    49.    <long_name>Netherlands</long_name>
    50.    <short_name>NL</short_name>
    51.    <type>country</type>
    52.    <type>political</type>
    53.   </address_component>
    54.   <address_component>
    55.    <long_name>1018 EK</long_name>
    56.    <short_name>1018 EK</short_name>
    57.    <type>postal_code</type>
    58.   </address_component>
    59.   <geometry>
    60.    <location>
    61.     <lat>52.3636720</lat>
    62.     <lng>4.9032639</lng>
    63.    </location>
    64.    <viewport>
    65.     <southwest>
    66.      <lat>52.3623023</lat>
    67.      <lng>4.9018063</lng>
    68.     </southwest>
    69.     <northeast>
    70.      <lat>52.3650002</lat>
    71.      <lng>4.9045042</lng>
    72.     </northeast>
    73.    </viewport>
    74.   </geometry>
    75.   <rating>4.1</rating>
    76.   <url>https://maps.google.com/?cid=2525001844608273035</url>
    77.   <icon>https://maps.gstatic.com/mapfiles/place_api/icons/restaurant-71.png</icon>
    78.   <reference>CmRRAAAAfDP-GrPxdIBq_SLo2UyqwWSIaWt8iJzR5egdBQAEjz08tZNtis2UxtniPFLeIWGwmFip_qN7uP55EcxudddNsSEcMvRjRfpG_TzH-r3soqFqvibcBophHmj0gvZV42bCEhDhjZfy7RQkhUbIgA83wERyGhT5wEUnmr7sJSkaNDBeNZge_aam1A</reference>
    79.   <id>c2ca25884fc92af7d2a4659d46fcc7e08ace7427</id>
    80.   <international_phone_number>+31 20 221 3400</international_phone_number>
    81.   <website>http://demagerebrug.nl/</website>
    82.   <review>
    83.    <time>1488305349</time>
    84.    <text>Small cozy cafe with delicious food. Great place to hangout late at night</text>
    85.    <author_name>Jay Rambhia</author_name>
    86.    <author_url>https://www.google.com/maps/contrib/103835654436548014412/reviews</author_url>
    87.    <rating>5.0</rating>
    88.    <language>en</language>
    89.    <profile_photo_url>https://lh5.googleusercontent.com/-poYtXEkPbNk/AAAAAAAAAAI/AAAAAAAAAiU/5ODXO5_3DLs/s128-c0x00000000-cc-rp-mo-ba1/photo.jpg</profile_photo_url>
    90.    <relative_time_description>2 months ago</relative_time_description>
    91.   </review>
    92.   <review>
    93.    <time>1489241811</time>
    94.    <text>Honest hearty lunch with good beer. Would recommend.</text>
    95.    <author_name>Renan Gemignani</author_name>
    96.    <author_url>https://www.google.com/maps/contrib/110749090048739102753/reviews</author_url>
    97.    <rating>4.0</rating>
    98.    <language>en</language>
    99.    <profile_photo_url>https://lh4.googleusercontent.com/-yOAEF_SPcDY/AAAAAAAAAAI/AAAAAAAAALU/L6t307c_SHM/s128-c0x00000000-cc-rp-mo/photo.jpg</profile_photo_url>
    100.    <relative_time_description>2 months ago</relative_time_description>
    101.   </review>
    102.   <review>
    103.    <time>1483691678</time>
    104.    <text>Very nice and cosy place to drink beer! The staff was excellent and the prices were low!</text>
    105.    <author_name>Sotirios Barmpas</author_name>
    106.    <author_url>https://www.google.com/maps/contrib/103391400533754420538/reviews</author_url>
    107.    <rating>5.0</rating>
    108.    <language>en</language>
    109.    <profile_photo_url>https://lh5.googleusercontent.com/-jQW6nWrQ2Hs/AAAAAAAAAAI/AAAAAAAACrU/nNu1ImEyouc/s128-c0x00000000-cc-rp-mo-ba1/photo.jpg</profile_photo_url>
    110.    <relative_time_description>4 months ago</relative_time_description>
    111.   </review>
    112.   <review>
    113.    <time>1491473566</time>
    114.    <text>Great place to go with friends before gig in Carre Theater.</text>
    115.    <author_name>Ewa Walkiewicz</author_name>
    116.    <author_url>https://www.google.com/maps/contrib/102171433888760394958/reviews</author_url>
    117.    <rating>5.0</rating>
    118.    <language>en</language>
    119.    <profile_photo_url>https://lh5.googleusercontent.com/-hjk5bkfHCxU/AAAAAAAAAAI/AAAAAAAAAA4/OvaKnY3b6Uc/s128-c0x00000000-cc-rp-mo-ba1/photo.jpg</profile_photo_url>
    120.    <relative_time_description>a month ago</relative_time_description>
    121.   </review>
    122.   <review>
    123.    <time>1492433515</time>
    124.    <text>Great for locals or pre-theatre drinks and eats! </text>
    125.    <author_name>James Campbell</author_name>
    126.    <author_url>https://www.google.com/maps/contrib/106493052265435675963/reviews</author_url>
    127.    <rating>4.0</rating>
    128.    <language>en</language>
    129.    <profile_photo_url>https://lh3.googleusercontent.com/-l9LR1d1DPDY/AAAAAAAAAAI/AAAAAAAAAK4/yc-gZxbMQIw/s128-c0x00000000-cc-rp-mo/photo.jpg</profile_photo_url>
    130.    <relative_time_description>a month ago</relative_time_description>
    131.   </review>
    132.   <opening_hours>
    133.    <open_now>true</open_now>
    134.    <period>
    135.     <open>
    136.      <day>0</day>
    137.      <time>1000</time>
    138.     </open>
    139.     <close>
    140.      <day>1</day>
    141.      <time>0100</time>
    142.     </close>
    143.    </period>
    144.    <period>
    145.     <open>
    146.      <day>1</day>
    147.      <time>1100</time>
    148.     </open>
    149.     <close>
    150.      <day>2</day>
    151.      <time>0100</time>
    152.     </close>
    153.    </period>
    154.    <period>
    155.     <open>
    156.      <day>2</day>
    157.      <time>1100</time>
    158.     </open>
    159.     <close>
    160.      <day>3</day>
    161.      <time>0100</time>
    162.     </close>
    163.    </period>
    164.    <period>
    165.     <open>
    166.      <day>3</day>
    167.      <time>1100</time>
    168.     </open>
    169.     <close>
    170.      <day>4</day>
    171.      <time>0100</time>
    172.     </close>
    173.    </period>
    174.    <period>
    175.     <open>
    176.      <day>4</day>
    177.      <time>1100</time>
    178.     </open>
    179.     <close>
    180.      <day>5</day>
    181.      <time>0100</time>
    182.     </close>
    183.    </period>
    184.    <period>
    185.     <open>
    186.      <day>5</day>
    187.      <time>1100</time>
    188.     </open>
    189.     <close>
    190.      <day>6</day>
    191.      <time>0300</time>
    192.     </close>
    193.    </period>
    194.    <period>
    195.     <open>
    196.      <day>6</day>
    197.      <time>1000</time>
    198.     </open>
    199.     <close>
    200.      <day>0</day>
    201.      <time>0300</time>
    202.     </close>
    203.    </period>
    204.    <weekday_text>Monday: 11:00 AM – 1:00 AM</weekday_text>
    205.    <weekday_text>Tuesday: 11:00 AM – 1:00 AM</weekday_text>
    206.    <weekday_text>Wednesday: 11:00 AM – 1:00 AM</weekday_text>
    207.    <weekday_text>Thursday: 11:00 AM – 1:00 AM</weekday_text>
    208.    <weekday_text>Friday: 11:00 AM – 3:00 AM</weekday_text>
    209.    <weekday_text>Saturday: 10:00 AM – 3:00 AM</weekday_text>
    210.    <weekday_text>Sunday: 10:00 AM – 1:00 AM</weekday_text>
    211.   </opening_hours>
    212.   <utc_offset>120</utc_offset>
    213.   <photo>
    214.    <photo_reference>CmRYAAAAU8O58F7xFtCA0iP2wVlIRcZHffQ-snjl4w1ObqvnZwbJosqj5ebdP_04myPuejMpUx05IKaRdK_J63uaoYz1nQ0SFwM9hwcrBbAS_Y6xi4CGqkOs1AMRy6N7iycLrb-wEhD5o2W1EZHCv8WTtGXaJNQ-GhQfApKoll4sNVS4wK9jRWSI9wzbgw</photo_reference>
    215.    <width>601</width>
    216.    <height>600</height>
    217.    <html_attribution>&lt;a href=&quot;[url]https://maps.google.com/maps/contrib/103898665472041722586/photos&quot;&gt;Eetcafé[/url] de Magere Brug&lt;/a&gt;</html_attribution>
    218.   </photo>
    219.   <photo>
    220.    <photo_reference>CmRXAAAAoSFkWGeaflE-cUCeYSAaq4H4yeghIpD6r83QWYdFBS6kMeKRcVSWKys5a2G9YLeEpZ136rQryznGOP_uFaVeDNPpMhv_w6RdQlGiQ8c8vsI1KveqKRxHU_6UKxKDiLA_EhBt9LKF_eEcfW1FoPgHv9qEGhR9DPA-p68z9JpLSzQm1GHgl5ZJkQ</photo_reference>
    221.    <width>4608</width>
    222.    <height>2592</height>
    223.    <html_attribution>&lt;a href=&quot;[url]https://maps.google.com/maps/contrib/106893008021107505199/photos&quot;&gt;Vitalii[/url] Bratok&lt;/a&gt;</html_attribution>
    224.   </photo>
    225.   <photo>
    226.    <photo_reference>CmRYAAAA6OgwZAMnnY26xtpWWv_UDe_Z_T03UvLUiShDjHp3rQB9rkYfv45Ef2fxLaxjWO0SotVEnEqxyHVWq9sqXE1u53KlVqwH4rloWQm-HnIcADT6m0kTs0kwxDII9onwsmJLEhBULzlBUIyhRs-QBnWaOKY4GhQdXXSPIEw9Jn3tVvi54e1n0p2JvA</photo_reference>
    227.    <width>2988</width>
    228.    <height>5312</height>
    229.    <html_attribution>&lt;a href=&quot;[url]https://maps.google.com/maps/contrib/109826185629594245447/photos&quot;&gt;Dagmar[/url] Menzel&lt;/a&gt;</html_attribution>
    230.   </photo>
    231.   <photo>
    232.    <photo_reference>CmRYAAAAfrTZNTjsDPv30gBLWkNJTTiKTGVtoX2tOOo4mG1J9SrE9lxHl1TZdBqPZtPRfJ2gU63_MsEsQhM3_65--vGoJ16ejpGDMa77cjcAEAkUm9vY3V2MRObqjBKHXJeJe3EqEhAf3Wn83EcDm52T1giybdTyGhRtYHu9pyc3PPk6A64mkKZtucJ6OA</photo_reference>
    233.    <width>4160</width>
    234.    <height>3120</height>
    235.    <html_attribution>&lt;a href=&quot;[url]https://maps.google.com/maps/contrib/104840972812779752373/photos&quot;&gt;Acca[/url] De Cologne&lt;/a&gt;</html_attribution>
    236.   </photo>
    237.   <photo>
    238.    <photo_reference>CmRYAAAAMk6OxFWgWYb9-3VzSOIpyTn06JMhWwYuAE71WsNAsfiz6hm4osGgM4KE_HwDuUvfawODAIgLqrq7VNOBlQuhrnvqzx5z1ZjhsHDxZCkHeIk-jFQjDgTPhgtQKbgDPDGdEhAsqeKBsRSyn11wZv2gGBrLGhSt-ReE-BcUApCAitW2C5cKuakD9Q</photo_reference>
    239.    <width>400</width>
    240.    <height>300</height>
    241.    <html_attribution>&lt;a href=&quot;[url]https://maps.google.com/maps/contrib/103898665472041722586/photos&quot;&gt;Eetcafé[/url] de Magere Brug&lt;/a&gt;</html_attribution>
    242.   </photo>
    243.   <photo>
    244.    <photo_reference>CmRYAAAAihUFMmhXMZP4pVBVW-aMxxlZyAQaWVoMRsrjyFNJ6G-KqVMjRgA6wIrvqAerG90nDsKyAR9dJYPz8MjGcEplfZH9m-a33m63um9lBTMQIvKJz1imMv4yEO7E27SoEGQqEhB4RYbEpntXSxsUN-rcCgSvGhSELDJ3WmIJKht3-x9Y1yGKZutrWg</photo_reference>
    245.    <width>3264</width>
    246.    <height>2448</height>
    247.    <html_attribution>&lt;a href=&quot;[url]https://maps.google.com/maps/contrib/103898665472041722586/photos&quot;&gt;Eetcafé[/url] de Magere Brug&lt;/a&gt;</html_attribution>
    248.   </photo>
    249.   <photo>
    250.    <photo_reference>CmRYAAAAPGJzEqi-UdewBFZFd35-QpGz05q0OTNbHfSAtVfmuHsqIX04udTLPOh4f4jJeXFlZDQXk7arq0Q9uhQYGkzyFdRVgd20-ZcUYQsJMK6ngjK1l9gF9fs-il_hhjygjvunEhA6_yv2OBNcYoZ_pF4KJFFRGhQUblf7AtCtpY50TJhO8wmx7oIr4g</photo_reference>
    251.    <width>6144</width>
    252.    <height>3456</height>
    253.    <html_attribution>&lt;a href=&quot;[url]https://maps.google.com/maps/contrib/113583985250104442504/photos&quot;&gt;Goggy[/url] Gola&lt;/a&gt;</html_attribution>
    254.   </photo>
    255.   <photo>
    256.    <photo_reference>CmRYAAAABcwrAuMdedduhpNkG5q32hIgEzRCuh_F6o3T3D7w87tevHqcYRCoEGd9MKMaX-oVIGmdmus7bl88D8xVsQUnqjvVVqGCfSwRW37ez0PlqgaJrN5KUZCdnCPe-sRH6V4OEhAPW-RaBK-y-DPc4dSG-uZbGhTL9EesPdhhjjgGTFZWMOC08_X5AQ</photo_reference>
    257.    <width>3456</width>
    258.    <height>6144</height>
    259.    <html_attribution>&lt;a href=&quot;[url]https://maps.google.com/maps/contrib/113583985250104442504/photos&quot;&gt;Goggy[/url] Gola&lt;/a&gt;</html_attribution>
    260.   </photo>
    261.   <photo>
    262.    <photo_reference>CmRYAAAAUD3hq_UmFSoSA1_-k_I8f-xKZQMSu7tXvagIUdxU5IkjsHe2v-T9GYrPQKmqvWne_PgpVS0HJf1CiGTQQwBqS40fgiAMMqc9FZMlCspIx5ujPDJ8ODiomNREZIq6t057EhDPavw2aR67vzYnrUGfk924GhSssICyTzpvR5kpwGdn3X8bxcgVrw</photo_reference>
    263.    <width>720</width>
    264.    <height>960</height>
    265.    <html_attribution>&lt;a href=&quot;[url]https://maps.google.com/maps/contrib/103898665472041722586/photos&quot;&gt;Eetcafé[/url] de Magere Brug&lt;/a&gt;</html_attribution>
    266.   </photo>
    267.   <photo>
    268.    <photo_reference>CmRYAAAAg0i-fOM6MQkZhbjDbP8u5dBwChXlc7H3-1IvgfrVlbkiWmLfqSIVNTecZuvrkQrGqxGuVlMMHEpN3zJBsL1D7QlaCXHKVEo_cYEjH6K8S3u7Kl9wRQ6rthxNa9tPfCp2EhAylnGgm_R0IdIbILPJgQjqGhRxfQJiUcFVESGVhf3O1326AVyJCg</photo_reference>
    269.    <width>2160</width>
    270.    <height>3840</height>
    271.    <html_attribution>&lt;a href=&quot;[url]https://maps.google.com/maps/contrib/115538019589030812202/photos&quot;&gt;Sara[/url] Astill&lt;/a&gt;</html_attribution>
    272.   </photo>
    273.   <adr_address>&lt;span class=&quot;street-address&quot;&gt;Amstel 81&lt;/span&gt;, &lt;span class=&quot;postal-code&quot;&gt;1018 EK&lt;/span&gt; &lt;span class=&quot;locality&quot;&gt;Amsterdam&lt;/span&gt;, &lt;span class=&quot;country-name&quot;&gt;Netherlands&lt;/span&gt;</adr_address>
    274.   <place_id>ChIJu6jwV5YJxkcRiwoVtcybCiM</place_id>
    275.   <scope>GOOGLE</scope>
    276.  </result>
    277. </PlaceDetailsResponse>
    En daar staat dus het telefoonnummer in (en nog veel meer zoals openingstijden, foto's e.d.).

    Als je liever met json werkt kun je xml in de url vervangen door json.

  4. #4
    Fornicatorus Formicidae VideoRipper's Avatar
    Join Date
    Mar 2005
    Location
    Vicus Saltus Orientalem
    Posts
    5,708
    Alleen wel een kleine kanttekening (alhoewel ik de aangedragen oplossing heel goed vind).

    Voor zover ik weet zijn de gegevens (zoals openingstijden, telefoonnumer, erc.) zoals ze bij
    Google bekend staan ingegeven door gebruikers en/of eigenaren van de "Place" in kwestie.

    Je hebt dus geen garantie dat de gegevens (nog) kloppen.

    Op zich hoeft dit niet direct of altijd een probleem te zijn, als je het maar in je achterhoofd
    houdt bij het gebruik.
    TMemoryLeak.Create(Nil);

  5. #5
    Senior Member Wok's Avatar
    Join Date
    Dec 2002
    Location
    Alkmaar
    Posts
    2,085
    Ik vind dit hele interessante materie.
    Ik ga zeker een testprojectje maken, json / xml is voor mij nieuw terrein.
    Zo leer je steeds bij

    Gr.Peter
    10.4.2, Delphi2010, of Lazarus 2.2.0

  6. #6
    Maar is het niet makkelijker de Google API te gebruiken?
    Dat ga ik zeker doen! Dank je wel voor de tip.

    @GolezTrol
    Het is volgens mij inderdaad zo dat deze gegevens door de gebruiker worden ingevoerd. Heb dat zelf ook wel eens gedaan. Of er nog een controle plaats vindt weet ik eigenlijk niet. Voor mijn marketing doeleinden is het goed genoeg!

    Bedankt voor de input & oplossingen!

  7. #7
    Hoi luigi, bedankt voor de feedback, maar de credits voor het uitgebreide antwoord waar je naar verwijst zijn voor rvk.
    1+1=b

  8. #8
    openkvk.nl

    de site is gratis, je kunt ook een betaald api account nemen. De echte kvk heeft ook zo'n betaalde dienst, o.a. snelstart koppelt daar mee.

    Je zou ook eens kunnen bellen met Jeroen Ruijs van de dataminer (www.datam.nl). Is een heel geschikte kerel die een actuele kvk database bezit. Mogelijk wil hij het ook wel aanbieden als dienst.

  9. #9
    openkvk.nl gebruikt de api van overheid.io en die is niet gratis.

    De vraag was voor een api. En die is dus niet gratis.

    Buiten dat... het ging om het telefoonnummer en die krijg je niet te zien bij openkvk.nl.

  10. #10
    het ging om het telefoonnummer en die krijg je niet te zien bij openkvk.nl
    zucht je hebt weer eens gelijk

    overheid.io is gewoon een commercieel bedrijf met een commerciele api. Maar de zon is meestal het enige wat voor niets opgaat

    Luigi is bezig met een commerciele applicatie. Volgens mij kan je een dergelijke dienst dan ook makkelijk als abonnement dienst aanbieden en heb je een win win.

  11. #11
    Alle credit van GolezTrol graag naar RVK

    Dit is even een ander projectje tussendoor Wil adverteren op facebook als ik het goed begrepen heb kan ik om de doelgroep te bepalen ook mobiele telefoonnummers gebruiken (als deze natuurlijk bij Mark bekend zijn )

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •