List of reports
GEThttps://api.import.io/reports/
List of reports
Request
Query Parameters
_apikey stringrequired
You can find your API key in the Import.io dashboard under User Settings
_perpage integer
Number of items to return per page
_page integer
Page number to return (default is 1)
_sort string
Field name to sort by.
To sort by created time, use _sort=meta_created_at
.
_sortDirection string
Possible values: [ASC
, DESC
]
Sort order.
Default is DESC
.
Responses
- 200
- 401
List of reports retrieved successfully
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
guid uuid
Unique identifier for the report.
_meta
object
name string
The report's name.
type string
The type of report.
extractorId uuid
Identifier of the extractor associated with this report.
latestConfigId uuid
Identifier of the latest report run configuration.
archived boolean
Flag to suppress display of report.
autoPublish booleandeprecated
Flag to auto-publish report.
[
{
"guid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"_meta": {
"timestamp": 0,
"creationTimestamp": 0,
"patchTimestamp": 0,
"objectGuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"lastEditorGuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"ownerGuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"creatorGuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"orgGuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"deleted": true
},
"name": "string",
"type": "string",
"extractorId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"latestConfigId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"archived": true
}
]
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
code int
Internal error code.
error stringdeprecated
A message containing a brief description of the error.
message string
A message containing a brief description of the error.
{
"code": 0,
"message": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://api.import.io/reports/' \
-H 'Accept: application/json'