Find an API

Search public APIs with auth details & Postman guides

← All APIs

MotaWord API

motaword · Company

Company No Auth Free & Open text

Use MotaWord API to post and track your translation projects.

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Get blog posts - ordered by created desc by default

Get blog posts - ordered by created desc by default

https://api.apis.guru/v2/specs/motaword.com/1.0/blogs?page=1&locale=en-US&fallback=true&per_page=1

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/motaword.com/1.0/blogs?page=1&locale=en-US&fallback=true&per_page=1"
import requests
params = {
    "page": "1",
    "locale": "en-US",
    "fallback": "true",
    "per_page": "1"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/motaword.com/1.0/blogs",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/motaword.com/1.0/blogs');
url.searchParams.set('page', '1');
url.searchParams.set('locale', 'en-US');
url.searchParams.set('fallback', 'true');
url.searchParams.set('per_page', '1');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/motaword.com/1.0/blogs")
	q := baseURL.Query()
	q.Set("page", "1")
	q.Set("locale", "en-US")
	q.Set("fallback", "true")
	q.Set("per_page", "1")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/motaword.com/1.0/blogs")
uri.query = URI.encode_www_form({
  "page" => "1",
  "locale" => "en-US",
  "fallback" => "true",
  "per_page" => "1"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/motaword.com/1.0/blogs?" . http_build_query([
    "page" => "1",
    "locale" => "en-US",
    "fallback" => "true",
    "per_page" => "1"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET View continuous projects

View a list of continuous projects under your account. Continuous projects are those that are constantly updated, such as a CI/CD project, software project, website translation and such.

https://api.apis.guru/v2/specs/motaword.com/1.0/continuous_projects?type=active

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/motaword.com/1.0/continuous_projects?type=active"
import requests
params = {
    "type": "active"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/motaword.com/1.0/continuous_projects",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/motaword.com/1.0/continuous_projects');
url.searchParams.set('type', 'active');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/motaword.com/1.0/continuous_projects")
	q := baseURL.Query()
	q.Set("type", "active")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/motaword.com/1.0/continuous_projects")
uri.query = URI.encode_www_form({
  "type" => "active"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/motaword.com/1.0/continuous_projects?" . http_build_query([
    "type" => "active"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET View your documents

View a list of files and documents that you have translations for. This endpoint lets you view your MotaWord account as a multilingual translated file repository, without needing to go through your projects to interact with files in them.

https://api.apis.guru/v2/specs/motaword.com/1.0/documents?page=1&recent=0&search=hello&with[]=example&order_by=updated_at&per_page=10&order_type=desc&type_filter=ALL&language_code=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/motaword.com/1.0/documents?page=1&recent=0&search=hello&with[]=example&order_by=updated_at&per_page=10&order_type=desc&type_filter=ALL&language_code=example"
import requests
params = {
    "page": "1",
    "recent": "0",
    "search": "hello",
    "with[]": "example",
    "order_by": "updated_at",
    "per_page": "10",
    "order_type": "desc",
    "type_filter": "ALL",
    "language_code": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/motaword.com/1.0/documents",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/motaword.com/1.0/documents');
url.searchParams.set('page', '1');
url.searchParams.set('recent', '0');
url.searchParams.set('search', 'hello');
url.searchParams.set('with[]', 'example');
url.searchParams.set('order_by', 'updated_at');
url.searchParams.set('per_page', '10');
url.searchParams.set('order_type', 'desc');
url.searchParams.set('type_filter', 'ALL');
url.searchParams.set('language_code', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/motaword.com/1.0/documents")
	q := baseURL.Query()
	q.Set("page", "1")
	q.Set("recent", "0")
	q.Set("search", "hello")
	q.Set("with[]", "example")
	q.Set("order_by", "updated_at")
	q.Set("per_page", "10")
	q.Set("order_type", "desc")
	q.Set("type_filter", "ALL")
	q.Set("language_code", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/motaword.com/1.0/documents")
uri.query = URI.encode_www_form({
  "page" => "1",
  "recent" => "0",
  "search" => "hello",
  "with[]" => "example",
  "order_by" => "updated_at",
  "per_page" => "10",
  "order_type" => "desc",
  "type_filter" => "ALL",
  "language_code" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/motaword.com/1.0/documents?" . http_build_query([
    "page" => "1",
    "recent" => "0",
    "search" => "hello",
    "with[]" => "example",
    "order_by" => "updated_at",
    "per_page" => "10",
    "order_type" => "desc",
    "type_filter" => "ALL",
    "language_code" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with MotaWord API?

MotaWord API is a Company API. Developers commonly use company APIs for:

  • enriching CRM records with company firmographics
  • building lead-generation and prospecting tools
  • verifying business identity and registration details
  • monitoring competitors and market intelligence
  • powering B2B data enrichment pipelines

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. MotaWord API is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide

Open documentation ↗