Import.io ReportRun API
Retrieve report run executions and their result files.
Retrieve report run executions and their result files.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/import-io-reportrun-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Import.io Crawlrun Report Run API
description: 'The Import.io API (v2.0) provides programmatic access to create, manage, and run
web data extractors, retrieve crawl run results, and manage reports. Everything
available in the Import.io UI can be accomplished via the API, including
scheduling extractions, managing data pipelines, and exporting data in JSON,
CSV, or Excel formats. Authenticated extraction is supported for data behind
login screens.
Authentication is performed by passing your API key as the `_apikey` query
parameter on every request. You can find your API key in the Import.io
dashboard under User Settings.
'
version: '2.0'
contact:
name: Import.io Support
url: https://help.import.io/
license:
name: Proprietary
url: https://www.import.io/terms-of-use/
servers:
- url: https://api.import.io
description: Production API
security:
- apiKeyAuth: []
tags:
- name: ReportRun
description: Retrieve report run executions and their result files.
paths:
/reportruns/:
get:
tags:
- ReportRun
summary: List report runs
description: List all report runs across reports with optional filters.
operationId: listReportRuns
parameters:
- $ref: '#/components/parameters/ApiKey'
- $ref: '#/components/parameters/PerPage'
- $ref: '#/components/parameters/Page'
- $ref: '#/components/parameters/Sort'
- $ref: '#/components/parameters/SortDirection'
responses:
'200':
description: Array of report runs
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/ReportRun'
'401':
$ref: '#/components/responses/Unauthorized'
/reportruns/{reportRunId}:
get:
tags:
- ReportRun
summary: Get report run
description: Retrieve information about a specific report run.
operationId: getReportRun
parameters:
- $ref: '#/components/parameters/ReportRunId'
- $ref: '#/components/parameters/ApiKey'
responses:
'200':
description: Report run details
content:
application/json:
schema:
$ref: '#/components/schemas/ReportRun'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
/reportruns/{reportRunId}/{fileType}:
get:
tags:
- ReportRun
summary: Get report run results file
description: Download the result file for a report run. JSON output is only available for Change reports.
operationId: getReportRunFile
parameters:
- $ref: '#/components/parameters/ReportRunId'
- name: fileType
in: path
required: true
description: The file type to download.
schema:
type: string
enum:
- csv
- xlsx
- json
- $ref: '#/components/parameters/ApiKey'
responses:
'200':
description: Result file
content:
text/csv: {}
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet: {}
application/json: {}
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
components:
schemas:
Meta:
type: object
description: Common metadata included on most resources.
properties:
createdAt:
type: string
format: date-time
modifiedAt:
type: string
format: date-time
ownerId:
type: string
format: uuid
creatorId:
type: string
format: uuid
editorId:
type: string
format: uuid
Error:
type: object
properties:
code:
type: integer
description: Internal error code.
message:
type: string
description: Human-readable error description.
error:
type: string
description: Deprecated error string.
deprecated: true
ReportRun:
type: object
properties:
guid:
type: string
format: uuid
name:
type: string
type:
type: string
status:
type: string
reportId:
type: string
format: uuid
configId:
type: string
format: uuid
extractorId:
type: string
format: uuid
inputs:
type: object
additionalProperties: true
csv:
type: string
json:
type: string
log:
type: string
pdf:
type: string
xlsx:
type: string
summary:
type: object
additionalProperties: true
errorMessage:
type: string
archived:
type: boolean
_meta:
$ref: '#/components/schemas/Meta'
parameters:
ApiKey:
name: _apikey
in: query
required: true
description: Your Import.io API key.
schema:
type: string
SortDirection:
name: _sortDirection
in: query
required: false
description: Sort direction.
schema:
type: string
enum:
- ASC
- DESC
default: DESC
Page:
name: _page
in: query
required: false
description: Page number to return (default 1).
schema:
type: integer
default: 1
Sort:
name: _sort
in: query
required: false
description: Field to sort by, e.g. `meta_created_at`.
schema:
type: string
ReportRunId:
name: reportRunId
in: path
required: true
description: Unique identifier of the report run.
schema:
type: string
format: uuid
PerPage:
name: _perpage
in: query
required: false
description: Number of items to return per page.
schema:
type: integer
responses:
NotFound:
description: Resource not found.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
Unauthorized:
description: Authentication failed.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
securitySchemes:
apiKeyAuth:
type: apiKey
in: query
name: _apikey
description: API key obtained from the Import.io dashboard User Settings.