Dataset Viewer
Duplicate
The dataset viewer is not available for this split.
Cannot extract the features (columns) for the split 'train' of the config 'default' of the dataset.
Error code:   FeaturesError
Exception:    ArrowInvalid
Message:      Schema at index 2 was different: 
searchQuery: struct<term: string, url: string, device: string, page: int64, type: string, domain: string, countryCode: string, languageCode: string, locationUule: null, resultsPerPage: int64>
url: string
hasNextPage: bool
serpProviderCode: string
resultsTotal: null
relatedQueries: list<item: null>
paidResults: list<item: null>
paidProducts: list<item: null>
organicResults: list<item: extension<arrow.json>>
suggestedResults: list<item: null>
peopleAlsoAsk: list<item: struct<answer: string, question: string, title: string, url: string, date: null>>
customData: null
htmlSnapshotUrl: string
vs
data: struct<id: string, actId: string, userId: string, startedAt: string, finishedAt: null, status: string, meta: struct<origin: string, userAgent: string>, stats: struct<inputBodyLen: int64, migrationCount: int64, rebootCount: int64, restartCount: int64, resurrectCount: int64, computeUnits: int64>, options: struct<build: string, timeoutSecs: int64, memoryMbytes: int64, maxTotalChargeUsd: double, isMaxTotalChargeUsdSetByUser: bool, diskMbytes: int64>, buildId: string, defaultKeyValueStoreId: string, defaultDatasetId: string, defaultRequestQueueId: string, storageIds: struct<keyValueStores: struct<default: string>, datasets: struct<default: string, linkProspecting: string>, requestQueues: struct<default: string>>, pricingInfo: struct<minimalMaxTotalChargeUsd: double, pricingModel: string, isPriceChangeNotificationSuppressed: bool, createdAt: string, startedAt: string, apifyMarginPercentage: double, pricingPerEvent: struct<actorChargeEvents: struct<search-page-scraped: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, isPrimaryEvent: bool, eventPriceUsd: double>, actor-start: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>, ai-overview-scraped: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>, ai-mode-result-scraped: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>, perplexity-ai-result-scraped: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>, chatgpt-result-scraped: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>, copilot-result-scraped: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>, gemini-result-scraped: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>, lead-scraped: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>, lead-email-verified: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>, ads-scraped: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>, website-content-scraped: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>>>>, chargedEventCounts: struct<search-page-scraped: int64, actor-start: int64, ai-overview-scraped: int64, ai-mode-result-scraped: int64, perplexity-ai-result-scraped: int64, chatgpt-result-scraped: int64, copilot-result-scraped: int64, gemini-result-scraped: int64, lead-scraped: int64, lead-email-verified: int64, ads-scraped: int64, website-content-scraped: int64>, platformUsageBillingModel: string, accountedChargedEventCounts: struct<search-page-scraped: int64, actor-start: int64, ai-overview-scraped: int64, ai-mode-result-scraped: int64, perplexity-ai-result-scraped: int64, chatgpt-result-scraped: int64, copilot-result-scraped: int64, gemini-result-scraped: int64, lead-scraped: int64, lead-email-verified: int64, ads-scraped: int64, website-content-scraped: int64>, generalAccess: string, buildNumber: string, containerUrl: string, usageTotalUsd: int64, eventUsage: struct<search-page-scraped: struct<eventTitle: string, eventTotalUsd: int64>, actor-start: struct<eventTitle: string, eventTotalUsd: int64>, ai-overview-scraped: struct<eventTitle: string, eventTotalUsd: int64>, ai-mode-result-scraped: struct<eventTitle: string, eventTotalUsd: int64>, perplexity-ai-result-scraped: struct<eventTitle: string, eventTotalUsd: int64>, chatgpt-result-scraped: struct<eventTitle: string, eventTotalUsd: int64>, copilot-result-scraped: struct<eventTitle: string, eventTotalUsd: int64>, gemini-result-scraped: struct<eventTitle: string, eventTotalUsd: int64>, lead-scraped: struct<eventTitle: string, eventTotalUsd: int64>, lead-email-verified: struct<eventTitle: string, eventTotalUsd: int64>, ads-scraped: struct<eventTitle: string, eventTotalUsd: int64>, website-content-scraped: struct<eventTitle: string, eventTotalUsd: int64>>>
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/split/first_rows.py", line 249, in compute_first_rows_from_streaming_response
                  iterable_dataset = iterable_dataset._resolve_features()
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 4379, in _resolve_features
                  features = _infer_features_from_batch(self.with_format(None)._head())
                                                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2661, in _head
                  return next(iter(self.iter(batch_size=n)))
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2839, in iter
                  for key, pa_table in ex_iterable.iter_arrow():
                                       ~~~~~~~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2377, in _iter_arrow
                  yield from self.ex_iterable._iter_arrow()
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 564, in _iter_arrow
                  yield new_key, pa.Table.from_batches(chunks_buffer)
                                 ~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^
                File "pyarrow/table.pxi", line 5039, in pyarrow.lib.Table.from_batches
                File "pyarrow/error.pxi", line 155, in pyarrow.lib.pyarrow_internal_check_status
                File "pyarrow/error.pxi", line 92, in pyarrow.lib.check_status
                  raise convert_status(status)
              pyarrow.lib.ArrowInvalid: Schema at index 2 was different: 
              searchQuery: struct<term: string, url: string, device: string, page: int64, type: string, domain: string, countryCode: string, languageCode: string, locationUule: null, resultsPerPage: int64>
              url: string
              hasNextPage: bool
              serpProviderCode: string
              resultsTotal: null
              relatedQueries: list<item: null>
              paidResults: list<item: null>
              paidProducts: list<item: null>
              organicResults: list<item: extension<arrow.json>>
              suggestedResults: list<item: null>
              peopleAlsoAsk: list<item: struct<answer: string, question: string, title: string, url: string, date: null>>
              customData: null
              htmlSnapshotUrl: string
              vs
              data: struct<id: string, actId: string, userId: string, startedAt: string, finishedAt: null, status: string, meta: struct<origin: string, userAgent: string>, stats: struct<inputBodyLen: int64, migrationCount: int64, rebootCount: int64, restartCount: int64, resurrectCount: int64, computeUnits: int64>, options: struct<build: string, timeoutSecs: int64, memoryMbytes: int64, maxTotalChargeUsd: double, isMaxTotalChargeUsdSetByUser: bool, diskMbytes: int64>, buildId: string, defaultKeyValueStoreId: string, defaultDatasetId: string, defaultRequestQueueId: string, storageIds: struct<keyValueStores: struct<default: string>, datasets: struct<default: string, linkProspecting: string>, requestQueues: struct<default: string>>, pricingInfo: struct<minimalMaxTotalChargeUsd: double, pricingModel: string, isPriceChangeNotificationSuppressed: bool, createdAt: string, startedAt: string, apifyMarginPercentage: double, pricingPerEvent: struct<actorChargeEvents: struct<search-page-scraped: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, isPrimaryEvent: bool, eventPriceUsd: double>, actor-start: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>, ai-overview-scraped: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>, ai-mode-result-scraped: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>, perplexity-ai-result-scraped: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>, chatgpt-result-scraped: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>, copilot-result-scraped: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>, gemini-result-scraped: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>, lead-scraped: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>, lead-email-verified: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>, ads-scraped: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>, website-content-scraped: struct<eventTitle: string, eventDescription: string, isOneTimeEvent: bool, eventPriceUsd: double>>>>, chargedEventCounts: struct<search-page-scraped: int64, actor-start: int64, ai-overview-scraped: int64, ai-mode-result-scraped: int64, perplexity-ai-result-scraped: int64, chatgpt-result-scraped: int64, copilot-result-scraped: int64, gemini-result-scraped: int64, lead-scraped: int64, lead-email-verified: int64, ads-scraped: int64, website-content-scraped: int64>, platformUsageBillingModel: string, accountedChargedEventCounts: struct<search-page-scraped: int64, actor-start: int64, ai-overview-scraped: int64, ai-mode-result-scraped: int64, perplexity-ai-result-scraped: int64, chatgpt-result-scraped: int64, copilot-result-scraped: int64, gemini-result-scraped: int64, lead-scraped: int64, lead-email-verified: int64, ads-scraped: int64, website-content-scraped: int64>, generalAccess: string, buildNumber: string, containerUrl: string, usageTotalUsd: int64, eventUsage: struct<search-page-scraped: struct<eventTitle: string, eventTotalUsd: int64>, actor-start: struct<eventTitle: string, eventTotalUsd: int64>, ai-overview-scraped: struct<eventTitle: string, eventTotalUsd: int64>, ai-mode-result-scraped: struct<eventTitle: string, eventTotalUsd: int64>, perplexity-ai-result-scraped: struct<eventTitle: string, eventTotalUsd: int64>, chatgpt-result-scraped: struct<eventTitle: string, eventTotalUsd: int64>, copilot-result-scraped: struct<eventTitle: string, eventTotalUsd: int64>, gemini-result-scraped: struct<eventTitle: string, eventTotalUsd: int64>, lead-scraped: struct<eventTitle: string, eventTotalUsd: int64>, lead-email-verified: struct<eventTitle: string, eventTotalUsd: int64>, ads-scraped: struct<eventTitle: string, eventTotalUsd: int64>, website-content-scraped: struct<eventTitle: string, eventTotalUsd: int64>>>

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

README.md exists but content is empty.
Downloads last month
59