Create
Create a Sitemap Import
application/json
Request Body required
embedding object
id_generator string
Possible values: [default
, headline-with-url-hash
]
Default value: default
The entity id generator, by default uses the web page path.
output_types string[]
Default value: [http://schema.org/WebPage]
The type of the generated entities, by default http://schema.org/WebPage
.
overwrite boolean
Default value: false
Whether to overwrite existing entities.
sitemap_url string
The sitemap URL
sitemap_url_regex string
A regex filter to apply to discovered URLs, it only applies to URLs in sitemaps.
urls string[]
The URLs
Responses
- 200
- 401
Success
application/x-ndjson
Schema
Example (from schema)
Schema
- Array [
- ]
string
[
"string"
]
Authentication Failure
POST /sitemap-imports
Authorization
name: Authorizationtype: apiKeydescription: `Key {your key}`in: header
Request
Request
curl / cURL
curl -L -X POST 'https://api.wordlift.io/sitemap-imports' \
-H 'Content-Type: application/json' \
-H 'Accept: application/x-ndjson' \
-H 'Authorization: <API_KEY_VALUE>' \
--data-raw '{
"embedding": {
"model": "nomic-ai/nomic-embed-text-v1",
"properties": [
"string"
]
},
"id_generator": "default",
"output_types": [
"[\"http://schema.org/WebPage\"]"
],
"overwrite": false,
"sitemap_url": "string",
"sitemap_url_regex": "string",
"urls": [
"string"
]
}'
python / requests
curl -L -X POST 'https://api.wordlift.io/sitemap-imports' \
-H 'Content-Type: application/json' \
-H 'Accept: application/x-ndjson' \
-H 'Authorization: <API_KEY_VALUE>' \
--data-raw '{
"embedding": {
"model": "nomic-ai/nomic-embed-text-v1",
"properties": [
"string"
]
},
"id_generator": "default",
"output_types": [
"[\"http://schema.org/WebPage\"]"
],
"overwrite": false,
"sitemap_url": "string",
"sitemap_url_regex": "string",
"urls": [
"string"
]
}'
nodejs / axios
curl -L -X POST 'https://api.wordlift.io/sitemap-imports' \
-H 'Content-Type: application/json' \
-H 'Accept: application/x-ndjson' \
-H 'Authorization: <API_KEY_VALUE>' \
--data-raw '{
"embedding": {
"model": "nomic-ai/nomic-embed-text-v1",
"properties": [
"string"
]
},
"id_generator": "default",
"output_types": [
"[\"http://schema.org/WebPage\"]"
],
"overwrite": false,
"sitemap_url": "string",
"sitemap_url_regex": "string",
"urls": [
"string"
]
}'
php / cURL
curl -L -X POST 'https://api.wordlift.io/sitemap-imports' \
-H 'Content-Type: application/json' \
-H 'Accept: application/x-ndjson' \
-H 'Authorization: <API_KEY_VALUE>' \
--data-raw '{
"embedding": {
"model": "nomic-ai/nomic-embed-text-v1",
"properties": [
"string"
]
},
"id_generator": "default",
"output_types": [
"[\"http://schema.org/WebPage\"]"
],
"overwrite": false,
"sitemap_url": "string",
"sitemap_url_regex": "string",
"urls": [
"string"
]
}'