ttbz.org.cn APIttbz.org.cn ↗
Access Chinese group standards, issuing organizations, and policy news via the ttbz.org.cn API. Filter standards by organization, retrieve full standard details, and more.
curl -X GET 'https://api.parse.bot/scraper/3799ca58-34f8-4d64-a696-2ed6cd74fcee/get_organizations?page=1' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve a paginated list of social organizations registered on the platform. Returns up to 10 organizations per page with details including legal representative, business scope, and unified social credit code.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number to retrieve. |
{
"type": "object",
"fields": {
"page": "integer, current page number",
"total": "integer, total number of organizations available",
"organizations": "array of organization objects with organization_id, organization_code, organization_name, legal_representative, unified_social_credit_code, business_scope, cert_unit_area"
},
"sample": {
"data": {
"page": 1,
"total": 100,
"organizations": [
{
"business_scope": "内河新能源船舶领域技术研发与成果转化;内河船舶领域标准制定与实施;协调新能源船舶制造产业链合作交流;咨询服务等。",
"cert_unit_area": "山东省",
"organization_id": "a8438189025845a19198df4c8da93bee",
"organization_code": "JNXCB",
"organization_name": "济宁市内河新能源船舶智造产业联合会",
"legal_representative": "张强",
"unified_social_credit_code": "51370800MJE4956267"
}
]
},
"status": "success"
}
}About the ttbz.org.cn API
The ttbz.org.cn API exposes 7 endpoints covering China's group standards registry, including organization profiles, paginated standards listings, and homepage news. The get_standards endpoint returns active standards across all organizations ordered by publication date, while get_standards_by_organization lets you filter by a specific organization's unique ID. Each standard record includes fields like standard_code, standard_name_en, status, publication_date, and implementation_date.
Organization Data
The get_organizations endpoint returns paginated records (10 per page) of social organizations registered on the platform. Each record includes organization_name, legal_representative, unified_social_credit_code, organization_code, and organization_id. To retrieve deeper information about a specific organization — including address, introduction, business_scope, activity_region, host_organization, and issuing_authority — pass the organization_id to get_organization_detail.
Standards Listings and Detail
get_standards paginates all currently active group standards across every organization, returning total count, total_pages, and an array with both Chinese (standard_name) and English (standard_name_en) name fields alongside status and date fields. To scope results to a single organization, use get_standards_by_organization with the required organization_id parameter — this accepts the organUniqueId value surfaced in either get_organizations or get_standards responses. For a full record on any individual standard, get_standard_detail returns the abstract, issuing_org, publication_date, and implementation_date. Note that get_standard_detail may be blocked by Safeline WAF if called at high frequency.
News and Policy Announcements
get_homepage_news returns a flat list of news items from the platform homepage, each with a title, news_id, and url. Full article content — including publisher and content body — is available via get_news_detail using the news_id. This makes it practical to monitor regulatory announcements and policy notices relevant to specific industry sectors.
- Track newly published group standards by polling
get_standardsfor records with recentpublication_datevalues - Build an organization directory using
get_organizationsand enriching each entry withget_organization_detailfields likebusiness_scopeandactivity_region - Map which standards each organization has issued by combining
get_standards_by_organizationwithorganization_idfrom the org list - Monitor regulatory compliance windows by comparing
publication_dateandimplementation_datefields from standard detail records - Display bilingual standard titles using
standard_nameandstandard_name_enfields for international-facing compliance tools - Aggregate policy news and notices from
get_homepage_newsandget_news_detailfor sector-specific regulatory intelligence feeds
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does ttbz.org.cn offer an official developer API?+
What does `get_standard_detail` return, and are there access limitations?+
get_standard_detail returns title, status, abstract, issuing_org, standard_code, publication_date, and implementation_date for a given standard_id. The endpoint notes that it may be blocked by the platform's Safeline WAF if called at high frequency, so spacing out requests to this endpoint is advisable.Can I search for standards by keyword or filter by status?+
get_standards returns all active standards paginated by publication date, and get_standards_by_organization filters by organization only. You can fork this API on Parse and revise it to add a keyword or status filter endpoint.Does the API return the full text or PDF of a standard document?+
abstract field but do not include full document text or PDF links. The API covers metadata fields such as standard_code, standard_name_en, publication_date, and implementation_date. You can fork this API on Parse and revise it to add an endpoint that retrieves document download links if they become available on the platform.How does pagination work across the standards and organization endpoints?+
get_organizations, get_standards, and get_standards_by_organization — accept an optional page integer parameter and return 10 records per page. Responses include page (current), total (total records), and total_pages to support sequential traversal of the full dataset.