# Parameters
# token
- Required
- Type
string
This parameter is required for all calls
This is your authentication token. All your requests must be authorized with your private token.
Private token
_USER_TOKEN_
Note: If you don't see your token, please
login first here and then refresh this page.
# rid
- Optional
- Type
string
A request identifier that you receive from the Crawling API when you push requests either to the Crawler or the Crawling API with &async=true parameter.
curl "https://api.crawlbase.com/storage?token=_USER_TOKEN_&rid=RID"
Note: One of the two rid
or url
must be sent. So both are optional but it's mandatory to send one of the two.
# url
- Optional
- Type
string
A URL that was crawled in partial format or full format and fully encoded.
curl "https://api.crawlbase.com/storage?token=_USER_TOKEN_&url=ENCODED_URL"
Note: One of the two rid
or url
must be sent. So both are optional but it's mandatory to send one of the two.
# format
Default is HTML. You can send json too. Please check the Crawling API response format for more information.