Find an API

Search public APIs with auth details & Postman guides

← All APIs

カラーミーショップアプリストア API

shop-pro · Commerce

Commerce No Auth Free & Open ecommerce

# カラーミーショップアプリストア API [アプリストア](https://app.shop-pro.jp/)にて公開するアプリに対して、一般公開している[カラーミーショップAPI](https://developer.shop-pro.jp/docs/colorme-api)に加えて、カラーミーショップアプリストアAPI(以下、アプリストアAPIといいます)を利用することが出来ます。アプリストアAPIでは以下のことが行えます。 - 課金データ(アプリ内課金、従量課金)の作成 - インラインスクリプトタグの取得・作成・更新・削除 - スクリプトタグの取得・作成・更新・削除 ## 利用手順 アプリストアAPIを利用するには、OAuth認証が必要です。OAuth認証の基本的な流れについては[カラーミーショップAPIドキュメント](https://developer.shop-pro.jp/docs/colorme-api)を参照してください。 アプリストアAPIの利用のために、以下のscopeが追加で指定可能になります。[カラーミーショップAPIドキュメント](https://de

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET インラインスクリプトタグの取得

インラインスクリプトタグの取得

https://api.apis.guru/v2/specs/shop-pro.jp/1.0.0/v1/inline_script_tags.json

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/shop-pro.jp/1.0.0/v1/inline_script_tags.json"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/shop-pro.jp/1.0.0/v1/inline_script_tags.json",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/shop-pro.jp/1.0.0/v1/inline_script_tags.json';

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

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

func main() {
	targetURL := "https://api.apis.guru/v2/specs/shop-pro.jp/1.0.0/v1/inline_script_tags.json"
	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/shop-pro.jp/1.0.0/v1/inline_script_tags.json")

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/shop-pro.jp/1.0.0/v1/inline_script_tags.json";
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET スクリプトタグの取得

スクリプトタグの取得

https://api.apis.guru/v2/specs/shop-pro.jp/1.0.0/v1/script_tags.json

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/shop-pro.jp/1.0.0/v1/script_tags.json"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/shop-pro.jp/1.0.0/v1/script_tags.json",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/shop-pro.jp/1.0.0/v1/script_tags.json';

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

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

func main() {
	targetURL := "https://api.apis.guru/v2/specs/shop-pro.jp/1.0.0/v1/script_tags.json"
	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/shop-pro.jp/1.0.0/v1/script_tags.json")

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/shop-pro.jp/1.0.0/v1/script_tags.json";
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET スクリプトタグの取得

スクリプトタグの取得

https://api.apis.guru/v2/specs/shop-pro.jp/1.0.0/appstore/v1/script_tags.json

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/shop-pro.jp/1.0.0/appstore/v1/script_tags.json"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/shop-pro.jp/1.0.0/appstore/v1/script_tags.json",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/shop-pro.jp/1.0.0/appstore/v1/script_tags.json';

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

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

func main() {
	targetURL := "https://api.apis.guru/v2/specs/shop-pro.jp/1.0.0/appstore/v1/script_tags.json"
	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/shop-pro.jp/1.0.0/appstore/v1/script_tags.json")

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/shop-pro.jp/1.0.0/appstore/v1/script_tags.json";
$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 カラーミーショップアプリストア API?

カラーミーショップアプリストア API is a Commerce API. Developers commonly use commerce APIs for:

  • syncing product catalogues and inventory levels
  • building price comparison and deal-finder tools
  • processing orders and tracking shipments
  • managing customer wishlists and reviews
  • automating abandoned-cart and promotional emails

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. カラーミーショップアプリストア API is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide · Learn about API keys · What is REST?

Open documentation ↗