About

BOXX の使命はクリエイターが集まるオープンプラットフォームの実現です。(APIを公開し、だれでもデザインを submit できるこのウェブサイトはそのちょっと変わった一例。)様々なメディアにおける広告のほか、ドキュメンタリーフィルムの制作やクリエイターのインデペンデント化のお手伝いもしています。

Our mission is to establish an open platform for creators to gather and do things differently. This website represents that doctrine by letting anyone use APIs to design their own BOXX site and submit it to us. This philosophy of openness surrounds everything we do, from creating ads in different media, to producing documentary films, to helping creators to go independent.

Showcase

coming soon

View

coming soon

coming soon.

coming soon

View

coming soon

coming soon.

coming soon

View

coming soon

coming soon.

API

ニュース一覧取得
News List

Boxx に関するニュースの一覧情報を取得します。返り値は時系列で並びます。

Acquire News feed info about Boxx. Returned valuables will be in time-series.

Method
GET
Endpoint
http://api.boxx.jp/v1/news_list
Sample Request
$ curl -XGET "http://api.boxx.jp/v1/news_list"
Request Parameter
Parameter Value Description
type json / jsonp 返ってくる形式を json か jsonp で指定します。省略時は json になります。 Specify returned valuables with "json" or "jsonp". default is "json"
callback callback callbackの関数名を指定します。省略時は、boxx[現在時刻]となります。 Specify the function name for "callback". Default is boxx[current time].
Resonse
{
    "result": true,
    "error": "none",
    "news":[
        {
            "newsid": 2,
            "title": {
                "ja": "宇田川さん結婚おめでとう",
                "en": "Happy Wedding, Udagawa-san"
            },
            "category": "Member",
            "date": {
                    "year":2015,"month":8,"day":23,
                    "hour":16, "min":30, "sec":00,
                    "timezone": "JST"
                },
            "text": {
                "ja":"2015年、BOXX 参加メンバーは結婚ブーム。いろんなメンバーが入籍したり、入籍を控えていたり。そんな中、宇田川さんが軽井沢で結婚式を上げました。",
                "en":"Wedding boom is taking place here at BOXX. Udagawa-san has just had a wedding ceremony at Karuizawa and Shiodome."
            },
            "thumbnail":{
                "small": "http://api.boxx.jp/images/news/Happy_Wedding_Udagawa-san_s.png",
                "medium": "http://api.boxx.jp/images/news/Happy_Wedding_Udagawa-san_m.png",
                "large": "http://api.boxx.jp/images/news/Happy_Wedding_Udagawa-san_l.png"
            }
        },
        {
            "newsid": 1,
            "title": {
                "ja": "世界初?オープンプラットフォームなウェブサイト(公式)ローンチしました",
                "en": "The world's first open platfrom website has just launched."
            },
            "category": "Launch",
            "date": {
                    "year":2016,"month":1,"day":1,
                    "hour":0, "min":00, "sec":00,
                    "timezone": "JST"
                },
            "text": {
                "ja":"プロジェクトごとに、最適なチームを組む BOXX の流動的なあり方を、そのままサイトにしました。プログラムが書ける方であれば、API を利用してどなたでも Boxx のオフィシャルサイトをデザイン可能です。あなたも、おひとついかがですか?",
                "en":"Here at BOXX we keep ourselves very fluid, allowing us to form the best team for any given assignment. The same is true of this website. If you can program, then you can design your own BOXX site with APIs. How about designing one today?"
            },
            "thumbnail":{
                "small": "http://api.boxx.jp/image/news/The_worlds_first_open_platfrom_website_has_just_launched_s.jpg",
                "medium": "http://api.boxx.jp/news/The_worlds_first_open_platfrom_website_has_just_launched_m.jpg",
                "large": "http://api.boxx.jp/news/The_worlds_first_open_platfrom_website_has_just_launched_l.jpg"
            }
        }
    ]
}
ニュース詳細取得
News Detail

Boxx に関するニュースの詳細情報を取得します。必須パラメータは newsid で、news_list で取得したものを利用します。

Acquire News Detail about Boxx. Required parameter is "newsid", which uses valuables aquired from "news_list".

Method
GET
Endpoint
http://api.boxx.jp/v1/news_detail
Sample Request
$ curl -XGET "http://api.boxx.jp/v1/news_detail?newsid=1"
Request Parameter
Parameter Value Description
newsid 1 必須。news_listで取得した newsid を指定します。 Required. Specify "newsid", which uses valuables aquiered from "news_list".
type json / jsonp 返ってくる形式を json か jsonp で指定します。省略時は json になります。 Specify returned valuables with "json" or "jsonp". default is "json"
callback callback callbackの関数名を指定します。省略時は、boxx[現在時刻]となります。 Specify the function name for "callback". Default is boxx[current time].
Resonse
{
    "result": true,
    "error": "none",
    "news": {
        "newsid": 1,
        "title": {
            "ja": "世界初?オープンプラットフォームなウェブサイト(公式)ローンチしました",
            "en": "The world's first open platfrom website has just launched."
        },
        "category": "Launch",
        "date": {
                "year":2016,"month":1,"day":1,
                "hour":0, "min":00, "sec":00,
                "timezone": "JST"
            },
        "text": {
            "ja":"プロジェクトごとに、最適なチームを組む BOXX の流動的なあり方を、そのままサイトにしました。プログラムが書ける方であれば、API を利用してどなたでも Boxx のオフィシャルサイトをデザイン可能です。あなたも、おひとついかがですか?",
            "en":"Here at BOXX we keep ourselves very fluid, allowing us to form the best team for any given assignment. The same is true of this website. If you can program, then you can design your own BOXX site with APIs. How about designing one today?"
        },
        "thumbnail":{
             "small": "http://api.boxx.jp/image/news/The_worlds_first_open_platfrom_website_has_just_launched_s.jpg",
                "medium": "http://api.boxx.jp/news/The_worlds_first_open_platfrom_website_has_just_launched_m.jpg",
                "large": "http://api.boxx.jp/news/The_worlds_first_open_platfrom_website_has_just_launched_l.jpg"
        }
    }
}
仕事一覧取得
Works List

Boxx に関する仕事の一覧情報を取得します。返り値は入力順で並びます。

Aquire the list of Boxx works. Returned valuables will be in entry sequence.

Method
GET
Endpoint
http://api.boxx.jp/v1/works_list
Sample Request
$ curl -XGET "http://api.boxx.jp/v1/works_list"
Request Parameter
Parameter Value Description
type json / jsonp 返ってくる形式を json か jsonp で指定します。省略時は json になります。 Specify returned valuables with "json" or "jsonp". default is "json"
callback callback callbackの関数名を指定します。省略時は、boxx[現在時刻]となります。 Specify the function name for "callback". Default is boxx[current time].
Resonse
{
    "result": true,
    "error": "none",
    "works": [
        {
            "workid": 1,
            "title": {
                "ja": "Google さがそう 「踏み出そう。2015」",
                "en": "Google Sagasou -Search On- "New Challenge""
            },
            "category": "TVCM",
            "country": "Japan",
            "launch": {
                    "year":2015,"month":1,"day":1,
                    "timezone": "JST"
            },
            "thumbnail":{
                "small": "http://api.boxx.jp/image/works/Google_Sagasou_-Search_On-_New_Challenge_s.png",
                "medium": "http://api.boxx.jp/image/works/Google_Sagasou_-Search_On-_New_Challenge_m.png",
                "large": "http://api.boxx.jp/image/works/Google_Sagasou_-Search_On-_New_Challenge_l.png"
            }
        },
        {
            "workid": 2,
            "title": {
                "ja": "Google 新商品発表会 on 4/1",
                "en": "Google New Product Announcement on 4/1"
            },
            "category": "WebFilm",
            "country": "Japan",
            "launch": {
                    "year":2015,"month":4,"day":1,
                    "timezone": "JST"
            },
            "thumbnail":{
                "small": "http://api.boxx.jp/image/works/Google_New_Product_Announcement_on_41_s.png",
                "medium": "http://api.boxx.jp/image/works/Google_New_Product_Announcement_on_41_m.png",
                "large": "http://api.boxx.jp/image/works/Google_New_Product_Announcement_on_41_l.png"
            }
        }
    ]
}
仕事詳細取得
Works Detail

Boxx に関する案件の詳細情報を取得します。必須パラメータは worksid で、news_list で取得したものを利用します。

Acquire Work Detail about Boxx. Required parameter is "worksid", which uses valuables aquired from "works_list".

Method
GET
Endpoint
http://api.boxx.jp/v1/works_detail
Sample Request
$ curl -XGET "http://api.boxx.jp/v1/works_detail?worksid=1"
Request Parameter
Parameter Value Description
worksid 1 必須。works_listで取得した worksid を指定します。 Required. Specify "worksid", which uses valuables aquiered from "works_list".
type json / jsonp 返ってくる形式を json か jsonp で指定します。省略時は json になります。 Specify returned valuables with "json" or "jsonp". default is "json"
callback callback callbackの関数名を指定します。省略時は、boxx[現在時刻]となります。 Specify the function name for "callback". Default is boxx[current time].
Resonse
{
    "result": true,
    "error": "none",
    "work": {
        "workid": 3,
        "title": {
            "ja": "Google Discover Shibuya",
            "en": "Google Discover Shibuya"
        },
        "category": "Event",
        "country": "Japan",
        "launch": {
                "year":2015,"month":8,"day":25,
                "timezone": "JST"
            },
        "description": {
            "ja":"Discover Shibuya のイベントは、「渋谷をもっと見つけよう」のコンセプトのもと、Google 検索を使ってお店とお客さんとをもっとつなぐための取り組みです。ハチ公前に巨大な検索画面が現れたほか、「Google 検索で、来てください」と渋谷のお店が呼びかける Movie が、スクランブル交差点のビジョンで流されました。",
            "en":"With Google's Search technology, we helped Shibuya Dogenzaka Shopping Street Association guide visitors to discover shops and restaurants in Shibuya more easily. A big Search screen appears in front of the iconic Shibuy Scrumble Intersection. Also over OOH visions, we screen videos of shops’ and restaurants’ staff inviting passers-by to search with Google on their mobile device to find their locations."
        },
        "thumbnail":{
            "small": "http://api.boxx.jp/image/works/Google_Discover_Shibuya_s.jpg",
            "medium": "http://api.boxx.jp/image/works/Google_Discover_Shibuya_m.jpg",
            "large": "http://api.boxx.jp/image/works/Google_Discover_Shibuya_l.jpg"
        },
              "movie":[
            {
                "type": "Youtube",
                "url": "https://youtu.be/oGB7DawgJwQ"
            }
        ],
    }
}
ページ一覧取得
Contents List

Works、News以外のページ情報の一覧を取得します。

Acquire contents list expert for news and works.

Method
GET
Endpoint
http://api.boxx.jp/v1/content_list
Sample Request
$ curl -XGET "http://api.boxx.jp/v1/content_list"
Request Parameter
Parameter Value Description
type json / jsonp 返ってくる形式を json か jsonp で指定します。省略時は json になります。 Specify returned valuables with "json" or "jsonp". default is "json"
callback callback callbackの関数名を指定します。省略時は、boxx[現在時刻]となります。 Specify the function name for "callback". Default is boxx[current time].
Resonse
{
    "result": true,
    "error": "none",
    "contents": [
        {
            "pageid": 1,
            "title": {
                "ja": "Boxx について",
                "en": "About Us"
            },
            "url": "http://www.boxx.jp/about/",
            "thumbnail":{
                "small": "http://api.boxx.jp/image/content/About_s.jpg",
                "medium": "http://api.boxx.jp/image/content/About_m.jpg",
                "large": "http://api.boxx.jp/image/content/About_l.jpg"
            }
        },
        {
            "pageid": 2,
            "title": {
                "ja": "お問い合せ",
                "en": "Contact"
            },
            "url": "http://www.boxx.jp/contact/",
            "thumbnail":{
                "small": "http://api.boxx.jp/image/content/Contact_s.jpg",
                "medium": "http://api.boxx.jp/image/content/Contact_m.jpg",
                "large": "http://api.boxx.jp/image/content/Contact_l.jpg"
            }
        }
    ]
}
ページ詳細取得
Contents Detail

ページ内の情報を取得します。必須パラメータは pageid で、content_list で取得したものを利用します。

Acquire Contents Detail. Required parameter is "pageid", which uses valuables aquired from "content_list".

Method
GET
Endpoint
http://api.boxx.jp/v1/content_detail
Sample Request
$ curl -XGET "http://api.boxx.jp/v1/content_detail?pageid=1"
Request Parameter
Parameter Value Description
pageid 1 必須。pageid を指定します。 Required. Specify "pageid".
type json / jsonp 返ってくる形式を json か jsonp で指定します。省略時は json になります。 Specify returned valuables with "json" or "jsonp". default is "json"
callback callback callbackの関数名を指定します。省略時は、boxx[現在時刻]となります。 Specify the function name for "callback". Default is boxx[current time].
Resonse
# About Us - http://api.boxx.jp/v1/content_detail?pageid=1
  
{
    "result": true,
    "error": "none",
    "contents": {
        "pageid": 1,
        "title": {
            "ja": "Boxx について",
            "en": "About Us"
        },
        "url": "http://www.boxx.jp/about/",
        "thumbnail":{
               "small": "http://api.boxx.jp/image/content/About_s.jpg",
                "medium": "http://api.boxx.jp/image/content/About_m.jpg",
                "large": "http://api.boxx.jp/image/content/About_l.jpg"
            }
        },
        "text": {
            "ja":"BOXX の使命はクリエイターが集まるオープンプラットフォームの実現です。(APIを公開し、だれでもデザインを submit できるこのウェブサイトはそのちょっと変わった一例。)様々なメディアにおける広告のほか、ドキュメンタリーフィルムの制作やクリエイターのインデペンデント化のお手伝いもしています。",
            "en":"Our mission is to establish an open platform for creators to gather and do things differently. This website represents that doctrine by letting anyone use APIs to design their own BOXX site and submit it to us. This philosophy of openness surrounds everything we do, from creating ads in different media, to producing documentary films, to helping creators to go independent."
        }
    }
}
# Contact - http://api.boxx.jp/v1/content_detail?pageid=2
  
{
    "result": true,
    "error": "none",
    "contents": {
        "pageid": 2,
        "title": {
            "ja": "お問い合わせ",
            "en": "Contact"
        },
        "url": "http://www.boxx.jp/contact/",
        "thumbnail":{
                "small": "http://api.boxx.jp/image/content/Contact_s.jpg",
                "medium": "http://api.boxx.jp/image/content/Contact_m.jpg",
                "large": "http://api.boxx.jp/image/content/Contact_l.jpg"
        },
        "text": {
            "ja":"お問い合わせ:info@boxx.jp",
            "en":"Contact:info@boxx.jp"
        }
    }
}

Embed Boxx Ribbon

Boxx.jpのAPIを利用して制作したサイトには、こちらのリボンを設置してください。 Please use this ribbon for the BOXX site you designed.

<script type="text/javascript" src="http://www.boxx.jp/parts/boxx.js?top=30&zindex=0" id="boxxjs"></script>

Ribbon

Embed Sample

Submit Your Site

APIを使ってあなたが作ったBoxxサイトを教えてください。作ったBoxxサイトは、githubでbranchを作ってpushしてください。push後にgithubアカウントをinfo@boxx.jpまでメールしてください。

lease submit the BOXX site you designed to us. Use the code of github and create a branch then push. After the push, send your github account to info@boxx.jp.