Skip to main content

Create

Create a Sitemap Import

Request Body required
    embedding object

    A request to generate the embeddings.

    model string

    Default value: nomic-ai/nomic-embed-text-v1

    The model used to generate the embeddings.

    properties string[]

    The list of properties to use to generate the embeddings.

    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

Success


Schema
  • Array [
  • string

  • ]
POST /sitemap-imports

Authorization

name: Authorizationtype: apiKeydescription: `Key {your key}`in: header

Request

Base URL
https://api.wordlift.io
ApiKey
Body required
{
"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"
]
}
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"
]
}'